/* {$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;
}

.widget_3a53 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.modal-a01e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .modal-a01e {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .modal-a01e {
        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 */
.outline-bbb2 {
    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);
}

.new-b560 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .new-b560 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .chip-middle-9120 {
        grid-column: 1;
    }
    
    .breadcrumb_fb6a {
        grid-column: 2;
    }
    
    .summary-9724 {
        grid-column: 3;
    }
}

.chip-middle-9120 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.chip-middle-9120:hover img {
    transform: scale(1.05);
}

/* Navigation */
.outline_current_26bc {
    display: none;
}

@media (min-width: 1024px) {
    .outline_current_26bc {
        display: block;
    }
}

/* Grouped Navigation */
.shadow_old_85e6 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.secondary-bronze-53b9 {
    position: relative;
}

.chip-gas-38a3 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.secondary-bronze-53b9 .article-bright-15e5 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.article-bright-15e5 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.silver_71ab {
    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;
}

.silver_71ab:hover,
.silver_71ab.fn-active-3051 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.logo_bright_ee67 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .logo_bright_ee67 {
        display: flex;
    }
}

/* Mobile Register Button */
.breadcrumb_fb6a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .breadcrumb_fb6a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dynamic-da05 {
    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;
}

.dynamic-da05::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 */
.summary-9724 {
    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) {
    .summary-9724 {
        display: none;
    }
}

.summary-9724 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.summary-9724.fn-active-3051 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.summary-9724.fn-active-3051 span:nth-child(2) {
    opacity: 0;
}

.summary-9724.fn-active-3051 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.column_cold_22d0 {
    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;
}

.column_cold_22d0.fn-active-3051 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.shadow-white-99b8 {
    overflow: hidden;
}

.old_a693 {
    list-style: none;
    padding: 0.75rem 0;
}

.menu_4ec5 {
    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;
}

.menu_4ec5:hover,
.menu_4ec5.fn-active-3051 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.menu_4ec5.component-dca1 {
    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;
}

.menu_4ec5.component-dca1::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 */
.easy_c9c0 {
    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;
}

.button-plasma-3d83 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.button-plasma-3d83:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.plasma-2b79 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.plasma-2b79:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media_3e33 {
    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;
}

.media_3e33:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.wrapper-south-16ef {
    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;
}

.basic_d231 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.basic_d231:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.complex-41de {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.complex-41de:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.cold_b439 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.cold_b439: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);
}

.gallery_27b9 {
    font-size: 1em;
    font-weight: 700;
}

.top-23b6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.right_5295 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.right_5295::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;
}

.widget-99b5 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .widget-99b5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.tertiary-5068 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.carousel-a446 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.soft_1261 {
    margin-bottom: 2rem;
}

.logo_top_2617 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .logo_top_2617 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-95f1 {
    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);
}

.item-dark-ef66 {
    font-size: 1.5rem;
}

.alert_855f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.active-665d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-e0a7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.prev-e0a7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.backdrop-6875 {
    text-align: center;
    margin-bottom: 3rem;
}

.first_24d1 {
    margin-bottom: 1rem;
}

.surface-34c5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-17b9 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .section-17b9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .section-17b9.status_94db {
        direction: rtl;
    }
    
    .section-17b9.status_94db > * {
        direction: ltr;
    }
}

.in-0afb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.in-0afb:first-child {
    margin-top: 0;
}

.bright-5c0d {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.summary-4a27 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.summary-4a27:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.static_6456 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_6456 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-66f9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered_5b50 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_inner_1d5f {
    list-style: none;
}

.photo_inner_1d5f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo_inner_1d5f li:last-child {
    border-bottom: none;
}

/* Games Features */
.content-b992 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shade_left_3bb2 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.container_0a4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.preview-87fc {
    margin: 2rem 0;
}

.bottom_25fe {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.tertiary-blue-f5ce {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.detail-2294 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.input-f563 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.middle-8722 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-8722 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_hot_c0db {
    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);
}

.item_hot_c0db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim_ee2e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.primary-wood-ede8 {
    font-size: 1.5rem;
}

.column_97ad {
    color: var(--accent-color);
    margin: 0;
}

.image-smooth-f62c {
    list-style: none;
}

.image-smooth-f62c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.image-smooth-f62c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.clean-d74d {
    margin: 2rem 0;
}

.sidebar-cool-4f54 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pagination-3b21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pagination-3b21 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_out_26d6 {
    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);
}

.disabled-tiny-9480 {
    font-size: 1.25rem;
}

.container_f1b0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.notification-9587,
.lower-b336 {
    text-align: center;
    margin: 2rem 0;
}

.main_dim_9ac2,
.card_lite_3a88 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.layout_north_61d8 {
    margin: 2rem 0;
    text-align: center;
}

.full_8345 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.full_8345::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;
}

.tabs_tiny_2c01 {
    position: relative;
    z-index: 1;
}

.popup-3362 {
    margin-bottom: 1rem;
}

.chip-64db {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media-right-60a2 {
    margin-bottom: 3rem;
}

.thumbnail-advanced-03ea {
    margin-top: 3rem;
}

.highlight_2a9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .highlight_2a9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_2a9a .module-95f1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dim-368f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-tiny-3a03 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.surface-c529 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.accordion_lower_9928 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .accordion_lower_9928 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion_lower_9928 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.icon_first_10ca {
    margin-bottom: 1rem;
}

.search_e5c6 img {
    margin-bottom: 1rem;
}

.highlight-pink-85d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-fe03 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.button-down-3037 {
    list-style: none;
}

.button-down-3037 li {
    margin-bottom: 0.5rem;
}

.button-down-3037 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.button-down-3037 a:hover {
    color: var(--accent-color);
}

.green_992d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advanced-42c5 {
    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);
}

.advanced-42c5:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.active_6e69 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.active_6e69 p {
    margin-bottom: 0.25rem;
}

.form_green_17c1 {
    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) {
    .form_green_17c1 {
        flex-direction: row;
    }
}

.layout-pink-620e {
    text-align: center;
}

@media (min-width: 768px) {
    .layout-pink-620e {
        text-align: left;
    }
}

.layout-pink-620e p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner-07f6 {
    font-size: 0.75rem !important;
}

.filter_df4c {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.popup-full-6064 {
    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);
    }
}

.text_large_dc35 {
    animation: fadeInUp 0.6s ease-out;
}

.notification_c11c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.mini_f4d4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini_f4d4 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.dark_94a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark_94a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-fast-9c4b {
    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);
}

.box-fast-9c4b .container_0a4a {
    font-size: 1.25rem;
}

.box-fast-9c4b .primary_8b26 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.paragraph_ace7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph_ace7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white-9779 {
    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);
}

.white-9779:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-61a0 {
    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);
}

.motion-06a7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hot_be83 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-0763 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box_tall_3fdc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box_tall_3fdc .column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box_tall_3fdc .steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_slow_f938 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-bdb7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hero-bdb7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hero-bdb7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hero-532b {
    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);
}

.cold-6b3b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steel_5a15 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.steel_5a15 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel_5a15 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);
}

.steel_5a15 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.steel_5a15 input::placeholder {
    color: var(--text-muted);
}

.copper_37ba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.module-d6ee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.module-d6ee input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.picture-mini-5735 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.picture-mini-5735:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pagination-3b21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-3b21 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_out_26d6 {
    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);
}

.pagination_out_26d6 .disabled-tiny-9480 {
    font-size: 1.25rem;
}

.pagination_out_26d6 .container_f1b0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.orange-eb25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-0df4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-0df4 .container_0a4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav-0df4 .column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav-0df4 .steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy_dca9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-e8f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero-e8f7 .primary_fresh_cd20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-e8f7 .silver-2769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_1332 {
    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);
}

.focus_bright_794f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus_bright_794f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-8c8d {
    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);
}

.short-8c8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-f087 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.link-dim-e450 {
    flex: 1;
}

.item-left-f601 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass-c0d8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading_3b23 {
    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);
}

.heading_3b23:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.tabs_right_efcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_right_efcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_c71e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_c71e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_pink_12c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_motion_97fb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion_08f4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tabs-0e56 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.smooth_736e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_dc25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink_d565 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pink_d565 .thumbnail-action-2545 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink_d565 .motion_7785 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_3ad6 {
    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);
}

.east-2f5f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-1070 {
    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);
}

.simple-1070 .container_0a4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-1070 .column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.simple-1070 .steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid_0855 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid_0855 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_up_b3f2 {
    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);
}

.shadow_up_b3f2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.alert-e226 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-e226 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_bottom_79be {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info_bottom_79be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-over-ffa1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-stone-afb3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tertiary-blue-f5ce {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.south-374f {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.large_417f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface_f053 {
    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);
}

.surface_f053:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-7251 {
    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);
}

.outline_2c46 {
    flex: 1;
}

.border-4fba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.badge_outer_9c6e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.west_5ef1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_basic_a91b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed-28d7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-28d7 .primary_fresh_cd20 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fixed-28d7 .silver-2769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-b336 {
    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);
}

.filter-stale-7b81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-stale-7b81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.primary-black-7630 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-black-7630 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_right_2481 {
    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);
}

.pagination_right_2481:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-cf12 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-ea51 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tall-0614 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block-1086 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout-fixed-98f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-6452 {
    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);
}

.badge_steel_7d74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_purple_49f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_bright_f498 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-2f5f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-1070 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.simple-1070 .column-f8bd {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-1070 .steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-short-b7cf {
    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);
}

.link_df74 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_df74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_df74 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_first_fd47 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop_first_fd47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-stale-eba7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_6885 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.down-988d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.card_stone_c04f {
    padding: 1.5rem;
}

.container_e92d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark_5016 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark_5016 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;
}

.dark_5016 li:last-child {
    border-bottom: none;
}

.dark_5016 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.pressed_fbf6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed_fbf6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_pink_cc58 {
    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);
}

.table_pink_cc58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_upper_ac46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid_03cd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-f3da {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel-64cd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_3bea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item_rough_756c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar_b3ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_23b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search_0f4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-right-9fca {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.right_b7b4 {
    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);
}

.border_672f {
    text-align: center;
}

.sidebar_orange_9de6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_98e0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row-8e88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-c313 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-c313 .column-f8bd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-c313 .steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_slow_760a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_slow_760a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_slow_760a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_8de2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lower_8de2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-right-43bc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid-1b70 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.column-f8bd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tertiary-dim-aa6a {
    padding: 1.5rem;
}

.steel-5098 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-7d39 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-7d39 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;
}

.action-7d39 li:last-child {
    border-bottom: none;
}

.action-7d39 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.row_upper_c569 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.container-7136 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-7136:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic_ac3a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_tall_8432 {
    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);
}

.border-61a0 {
    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;
}

.motion-06a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot_be83 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_left_35bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-in-7613 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.orange-5fb0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_6358 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.focus_white_4f46 {
    display: flex;
    gap: 1rem;
}

.focus_white_4f46 .white_5d7b {
    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;
}

.frame_de02 {
    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);
}

.hover-856e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion-bd2b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion-bd2b 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;
}

.motion-bd2b li:last-child {
    border-bottom: none;
}

.motion-bd2b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.sort_paper_f8ab {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_paper_f8ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_paper_f8ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_last_5dcb {
    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_last_5dcb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-ec44 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.content_093e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thumbnail-action-2545 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.large_1c8f {
    font-size: 1rem;
}

.prev-5763 {
    padding: 1.5rem;
}

.motion_7785 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.paper_4a45 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.paper_4a45 .border_672f {
    text-align: center;
}

.paper_4a45 .tooltip_98e0 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.paper_4a45 .backdrop_west_bbf4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pattern-static-b7e7 {
    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);
}

.pattern-static-b7e7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tag-white-2b46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-white-2b46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-white-cdab {
    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);
}

.paragraph-white-cdab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-hard-24ad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-e613 {
    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);
}

.thumbnail-blue-103f {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-d955 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget-1b3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_5f23 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.soft-2559 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-c6f1 {
    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);
}

.detail-bronze-ecba {
    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;
}

.detail-bronze-ecba.tooltip-motion-6040 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.detail-bronze-ecba.slider_slow_05a3 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.detail-bronze-ecba.shade-bottom-6437 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.detail-bronze-ecba.frame_rough_927d {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.detail-bronze-ecba.hover-mini-d270 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.west_a67c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed-852a {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-fe00 {
    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);
}

.video_f220 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.easy_dca9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy_dca9 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;
}

.easy_dca9 li:last-child {
    border-bottom: none;
}

.easy_dca9 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.caption-5f69 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-5f69 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-5f69 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-first-36ee {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-first-36ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-first-36ee.input-red-dbb2 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .status-first-36ee.input-red-dbb2 {
        grid-column: span 3;
    }
}

.slow-e79d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.status-first-36ee.input-red-dbb2 .slow-e79d {
    background: rgba(6, 182, 212, 0.1);
}

.lower-979b {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.static-1f98 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.status-first-36ee.input-red-dbb2 .static-1f98 {
    color: var(--info-color);
}

.white-e815 {
    padding: 1.5rem;
    text-align: center;
}

.copper-4c59 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.status-first-36ee.input-red-dbb2 .copper-4c59 {
    color: var(--info-color);
}

.current_023f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rough_c2d6 {
    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 */
.pink_3c8e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink_3c8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_7929 {
    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);
}

.large_7929:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_a4f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-0df4 {
    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);
}

.disabled-tiny-9480 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs_164e {
    flex: 1;
}

.sidebar-cool-4f54 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini_8ec1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-194f {
    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);
}

.complex_5ff1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accordion_3c3f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.popup-full-6064 {
    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);
}

.old-7974 {
  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);
}

.old-7974 .border_672f {
    text-align: center;
}

.old-7974 .sidebar_orange_9de6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.old-7974 .tooltip_98e0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active-e47c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_narrow_71b7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_a5e3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_old_bb5b {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-under-2738 {
    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);
}

.link-rough-493c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay-8919 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-61da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .easy-61da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .easy-61da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-04ac {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outline-04ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_32ed {
    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);
}

.list_de76 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.alert_bronze_4ca6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade_plasma_11d4 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shade_plasma_11d4.filter_action_120b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shade_plasma_11d4.section_steel_7b35 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.shade_plasma_11d4.modal-cc32 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.soft-4610 {
    padding: 1.5rem;
    text-align: center;
}

.north-cc00 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.huge_5af1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.huge_5af1 .notice-2a7f {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.accent_dark_cc3b {
    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);
}

.accent_dark_cc3b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.avatar_hovered_6f5d {
  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);
}

.tertiary_east_5008 {
    text-align: center;
}

.tertiary_east_5008 .sidebar_orange_9de6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.tertiary_east_5008 .tooltip_98e0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.module-soft-ae73 { text-align: center; }
.frame-motion-9356 { text-align: left; }
.pressed-5bac { text-align: right; }

.popup-0650 { margin-bottom: 0; }
.last_20ef { margin-bottom: 0.5rem; }
.preview_1a16 { margin-bottom: 1rem; }
.basic-3382 { margin-bottom: 1.5rem; }
.sidebar_f8fc { margin-bottom: 2rem; }

.liquid-e8e8 { margin-top: 0; }
.filter-hard-1b5b { margin-top: 0.5rem; }
.selected_0774 { margin-top: 1rem; }
.progress_easy_68f2 { margin-top: 1.5rem; }
.logo_stale_bd3e { margin-top: 2rem; }

.fn-hidden-3051 { display: none; }
.fn-visible-3051 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .right_5295 {
        padding: 6rem 0 3rem;
    }
    
    .widget-99b5 {
        text-align: center;
    }
    
    .section-17b9 {
        text-align: center;
    }
    
    .logo_top_2617 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .outline-bbb2,
    .column_cold_22d0,
    .full_8345,
    .surface-c529 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .right_5295 {
        background: none;
    }
}

/* Providers Section */
.huge_6f72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-8fee {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-8fee {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-8fee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-static-a27a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gallery-static-a27a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip_medium_92bd {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-top-0e4a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copper-c48e {
    list-style: none;
    padding: 0;
}

.copper-c48e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.copper-c48e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pattern_smooth_a591 {
    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);
}

.pattern_smooth_a591 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.row-7931 {
    padding: var(--section-padding);
}

.shadow_out_29c0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_out_29c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_4dad {
    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_4dad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.liquid_e12d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tertiary-f65c {
    display: flex;
    flex-direction: column;
}

.cool_30f8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.thick-b857 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.box-static-73d9 {
    color: var(--accent-color);
}

.info-thick-2e36 {
    font-size: 1.25rem;
}

.thick-38bf {
    margin-bottom: 1rem;
}

.thick-38bf p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tall_25c6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.focus-hovered-d09a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.border_672f {
    text-align: center;
}

.sidebar_orange_9de6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_98e0 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.smooth-d8f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_93b2 {
    margin: 2rem 0;
}

.nav-424f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.nav-424f .container_0a4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange-abc8 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.static-33cc {
    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;
}

.static-33cc:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-copper-2b7d {
    font-size: 2rem;
}

.module_c304 {
    display: flex;
    flex-direction: column;
}

.info_aeac {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.narrow-3461 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.background-05fd {
    padding: var(--section-padding);
}

.south_53a1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .south_53a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south_53a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-164f {
    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);
}

.action-164f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.action-164f .sidebar_orange_9de6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.action-164f .tooltip_98e0 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.action-164f .tall-ddd8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.tertiary-daae {
    margin-top: 4rem;
}

.warm-4c4f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.popup-first-cb9c {
    overflow-x: auto;
}

.huge-dbd3 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.huge-dbd3 thead {
    background: var(--accent-color);
}

.huge-dbd3 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.huge-dbd3 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.huge-dbd3 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.huge-dbd3 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.gallery_37e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-d07f {
    max-width: 900px;
    margin: 0 auto;
}

.paragraph_dc0e {
    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);
}

.paragraph_dc0e:hover {
    border-color: var(--accent-color);
}

.secondary-a89c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.secondary-a89c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.highlight_white_c872 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.paragraph_dc0e.fn-active-3051 .highlight_white_c872 {
    transform: rotate(45deg);
}

.medium_a63f {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.paragraph_dc0e.fn-active-3051 .medium_a63f {
    max-height: 1000px;
}

.medium_a63f p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.row-red-4915 {
    padding: var(--section-padding);
}

.hero-bdb7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.section-paper-47a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-d443 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focused-d443 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent-next-1481 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_5bee {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.down-3c2c {
    font-size: 2rem;
}

.blue-5d35 {
    color: var(--text-white);
    margin: 0;
}

.row-yellow-8c68 {
    list-style: none;
    padding: 0;
}

.row-yellow-8c68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-yellow-8c68 li:last-child {
    border-bottom: none;
}

.iron-8efd {
    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);
}

.iron-8efd p {
    color: var(--success-color);
    margin: 0;
}

.basic-39a9 {
    margin-top: 3rem;
}

.hover-856e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rough-9e0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rough-9e0e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion-a1d0 {
    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);
}

.fast-8013 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accordion-a1d0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.logo_pink_0c49 {
    padding: var(--section-padding);
}

.stale_4f30 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_4f30 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_174a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active_174a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pro-fb62 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert_4443 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.detail-49e1 {
    flex: 1;
}

.filter-0277 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.small_084d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.lower_1227 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_8e4f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status_8e4f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.label_2047 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.caption-0a9f {
    padding: var(--section-padding);
}

.aside_pink_d377 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.shadow_29a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_29a9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_eb66 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-green-6ee7, .feature_a7b6, .highlight_west_cc9c {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.highlight_west_cc9c {
    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 */
.hidden-active-ba0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth-c1a0 {
    margin: 2rem 0;
}

.background_pressed_36a2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-f0ec {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.short-bcd6 {
    list-style: none;
    padding: 0;
}

.short-bcd6 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;
}

.short-bcd6 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.short-bcd6 li:last-child {
    border-bottom: none;
}

.sidebar-clean-5222 {
    text-align: center;
    margin-top: 2rem;
}

.current-1330 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tertiary-east-dee3 {
    padding: var(--section-padding);
}

.gold_848e {
    margin: 2rem 0;
}

.text_gold_9263 {
    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) {
    .text_gold_9263 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.text_gold_9263:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion_middle_65f8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hover-out-c6bd {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.summary_60ce {
    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;
}

.input-71cc {
    flex: 1;
}

.motion-ccb1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.shade-90fa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.prev_87f6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.pattern_last_9cca {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .pattern_last_9cca {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.notification_fluid_bb3f {
    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);
}

.notification_fluid_bb3f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification_fluid_bb3f .sidebar_orange_9de6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_fluid_bb3f .tooltip_98e0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.selected-63a0 {
    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);
}

.mini_dd03 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.mini_dd03 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.icon_small_ddf7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .icon_small_ddf7 {
        grid-template-columns: 1fr 1fr;
    }
}

.tiny_92df {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-f6fb {
    margin-bottom: 1.5rem;
}

.frame-f6fb label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.frame-f6fb input,
.frame-f6fb 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;
}

.frame-f6fb input:focus,
.frame-f6fb select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.new-1528 {
    width: 100%;
    margin-top: 1rem;
}

.over-ba6a {
    display: flex;
    align-items: center;
}

.tertiary_adee {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.input-yellow-fed1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.component-64c0 {
    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;
}

.large_2272 {
    color: var(--text-gray);
}

.purple-4f8c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.active-f973 {
    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);
}

.active-f973 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.logo-easy-c3d8 {
    margin-top: 3rem;
}

.green_eb07 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.content-1c5a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-25b5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.fixed_367b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed_367b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.fixed-0e45 {
    padding: var(--section-padding);
}

.simple_26b7 {
    margin: 2rem 0;
}

.table-8d6d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.title-lite-fa64 {
    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;
}

.title-lite-fa64:hover, .title-lite-fa64.fn-active-3051 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.article_8528 {
    display: none;
}

.article_8528.fn-active-3051 {
    display: block;
}

.caption-huge-0132 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-4bdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.form-b56d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.form-b56d ul {
    list-style: none;
    padding: 0;
}

.form-b56d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.form-b56d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active-fa89 {
    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 */
.label_d814 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide-cf37 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-easy-ca38 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.box-f429 {
    color: var(--accent-color);
    margin: 0;
}

.main-paper-7aba {
    display: flex;
    gap: 1.5rem;
}

.photo-3496 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.popup-fluid-ccf7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.clean-1959 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.clean-1959.column-837c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.clean-1959.new-8437 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.clean-1959.complex_7257 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fast-d392 {
    margin-top: 2rem;
}

.hidden_narrow_4fed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thumbnail_6ee0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .thumbnail_6ee0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-39f6 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.aside_3a05 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.right_b87e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.notice_2be5 {
    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 */
.icon_6052 {
    padding: var(--section-padding);
}

.pink-ae03 {
    margin: 2rem 0;
}

.text_cb4b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.element-f697 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.component_bfdd {
    list-style: none;
    padding: 0;
}

.component_bfdd 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;
}

.component_bfdd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.component_bfdd li:last-child {
    border-bottom: none;
}

.bottom_7611 {
    margin: 2rem 0;
}

.new_a1a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pressed-1457 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pressed-1457 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_soft_4a4e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-dirty-219b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black-7f98 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.aside-036b {
    margin-top: 2rem;
}

.item-left-f601 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.iron_7dd7 {
    list-style: none;
    padding: 0;
}

.frame_4a78 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.frame_4a78 a {
    color: var(--accent-color);
    text-decoration: none;
}

.frame_4a78 a:hover {
    text-decoration: underline;
}

.summary-9bc0 {
    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 */
.video_last_b96c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_static_ea86 {
    margin: 2rem 0;
}

.header-0341 {
    margin-bottom: 3rem;
}

.header-0341 .outer-f0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.row-b073 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail-inner-4f08 {
    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);
}

.detail-inner-4f08:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.sort_copper_834e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .sort_copper_834e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-orange-819f {
    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 */
.aside-9742 {
    padding: var(--section-padding);
}

.info-glass-1495 {
    margin: 2rem 0;
}

.shade_5a43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer_ecac {
    overflow-x: auto;
    margin: 2rem 0;
}

.caption-f40c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.outer_c5a2 {
    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;
}

.nav_76c1 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.menu-slow-601c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .menu-slow-601c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-b0fc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-b0fc .container_0a4a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.red-b0fc .column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.first-49ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.full-cbc3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-rough-31d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-rough-31d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-hot-05e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.shadow-hot-05e1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tag-up-07ed {
    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);
}

.menu-cool-6d7c {
    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;
}

.thick-e834 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.small_fd10 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.slow_09be {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.footer-top-3e80 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-copper-4d5b {
    color: var(--text-white);
    font-weight: 600;
}

.caption_up_438d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs-motion-d9bf {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-motion-d9bf .white_5d7b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.grid_medium_0dc0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid_medium_0dc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-6e70 {
    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);
}

.column-6e70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column-6e70 .sidebar_orange_9de6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column-6e70 .tooltip_98e0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.mini_147d {
    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);
}

.dark_b951 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.dark_b951 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.layout-fixed-98f2 {
    margin: 2rem 0;
}

.gas-6452 {
    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);
}

.gas-6452:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.badge_steel_7d74 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-edca {
    flex: 1;
}

.feature_purple_49f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_bright_f498 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.east-2f5f {
    margin: 2rem 0;
}

.simple-1070 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-1070 .column-f8bd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.simple-1070 .steel-5098 {
    color: var(--text-gray);
    margin: 0;
}

.box-short-b7cf {
    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);
}

.box-short-b7cf .main_dim_9ac2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.first-49ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.bright-7251 {
    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;
}

.outline_2c46 {
    flex: 1;
}

.badge_outer_9c6e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.west_5ef1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.border-61a0 {
    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;
}

.tabs_167b {
    flex: 1;
}

.motion-06a7 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hot_be83 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.orange-5fb0 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tooltip_6358 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.focus_white_4f46 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.focus_white_4f46 .white_5d7b {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.frame_de02 {
    margin-top: 2rem;
}

.frame_de02 .hover-856e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.breadcrumb_inner_9a2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_b7b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right_b7b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_b7b4 .border_672f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-8e88 {
    margin: 2rem 0;
}

.copper-c313 {
    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 */
.container_9b62 {
    padding: var(--section-padding);
}

.tertiary-dim-aa6a {
    margin-top: 1rem;
}

.action-7d39 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.action-7d39 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.action-7d39 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.row_short_caf5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_pressed_a13d {
    margin: 2rem 0;
}

.photo_5a75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.medium_0798 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hover-dirty-3fe6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.top-7b21 {
    margin: 2rem 0;
}

.pressed-9549 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pressed-9549 .outer-f0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_b1cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .badge_b1cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary-small-cfd2 {
    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);
}

.motion-1927 {
    color: var(--text-white);
    font-weight: 600;
}

.backdrop_white_7f98 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.picture_eced {
    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);
}

.picture_eced p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tiny-ca5a {
    padding: var(--section-padding);
}

.form-2e0b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-2e0b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.light_5225 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light_5225 .fast-8013 {
    font-size: 2rem;
    flex-shrink: 0;
}

.light_5225 .dirty-7828 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.cold_066e {
    flex: 1;
}

.tertiary_5738 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-cool-c6ec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-cool-c6ec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mask-cool-c6ec li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.avatar_370a {
    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);
}

.avatar_370a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar_370a strong {
    color: var(--warning-color);
}

/* Slots Section */
.pro_f267 {
    padding: var(--section-padding);
}

.smooth_736e {
    margin: 2rem 0;
}

/* Table Games Section */
.lite_9046 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_dc25 {
    margin: 2rem 0;
}

.pink_d565 {
    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);
}

.pink_d565:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pink_d565 .thumbnail-action-2545 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink_d565 .motion_7785 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.image_3ad6 {
    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);
}

.image_3ad6 .main_dim_9ac2 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.component_a0cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-86b2 {
    margin: 2rem 0;
}

.accordion-down-089f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-gas-3a69 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner_plasma_7295 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.full_2429 {
    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);
}

.full_2429:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.full_2429.fn-active-3051 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_cbf0 {
    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);
}

.picture-pro-57c3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture-pro-57c3 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.full-9ddd {
    padding: var(--section-padding);
}

.block-mini-a8c7 {
    margin: 2rem 0;
}

.carousel_90c2 {
    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);
}

.carousel_90c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .carousel_90c2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.button-94df {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.message_tall_cbb1 {
    flex: 1;
}

.sort_7d18 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brown_bdb7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.heading_f9cb {
    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;
}

.notice-d44c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.filter_3bb3 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.button_7aa2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip-copper-6842 {
    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;
}

.chip-copper-6842:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title_09fb {
    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);
}

.row_wood_5c21 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row_wood_5c21 strong {
    color: var(--accent-color);
}

/* New Games Section */
.white_4333 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-4bb0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail-4bb0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-4bb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-f3b7 {
    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;
}

.west-f3b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.plasma_9cb2 {
    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;
}

.chip-4567 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.accent-db0c {
    font-size: 2rem;
}

.detail_gold_8d55 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.fluid-d144 {
    flex: 1;
}

.tabs_rough_6733 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.column-right-65e5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.slow_2d0d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tertiary-red-e39a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lite_2554 {
    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;
}

.simple-d2b3 {
    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;
}

.simple-d2b3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.block_steel_03cc {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_2d8b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice-0fad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .notice-0fad {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood-21c4 {
    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);
}

.notification_fd29 {
    color: var(--text-white);
    font-weight: 600;
}

.wood_62ea {
    color: var(--accent-color);
    font-weight: 600;
}

.lite_f8e8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.lite_f8e8 strong {
    color: var(--accent-color);
}

/* Security Section */
.hard-46e6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.video_c7d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.badge_c485 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.link_advanced_45d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge-fd7e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.label_full_26d2 {
    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) {
    .label_full_26d2 {
        flex-direction: column;
        gap: 1rem;
    }
}

.label_full_26d2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.label_full_26d2 .border-61a0 {
    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;
}

.label_full_26d2 .tabs_167b {
    flex: 1;
}

.label_full_26d2 .motion-06a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.label_full_26d2 .hot_be83 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.notification_8682 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_8682 .sidebar-cool-4f54 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification_8682 .orange-eb25 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_8682 .orange-eb25 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.notification_8682 .orange-eb25 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.media-current-5e08 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.search_7ad6 {
    padding: var(--section-padding);
}

.solid_712d {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .solid_712d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-next-ad67 {
    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);
}

.video-next-ad67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.video-next-ad67 .tag-red-9267 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video-next-ad67 .row_bright_3dd4 {
    flex: 1;
}

.video-next-ad67 .primary_fresh_cd20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-next-ad67 .pink-ab50 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.search-huge-a162 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-huge-a162 .current-60ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.search-huge-a162 .element-pressed-df10 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.search-huge-a162 .element-pressed-df10 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);
}

.search-huge-a162 .element-pressed-df10 li:last-child {
    border-bottom: none;
}

.search-huge-a162 .element-pressed-df10 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;
}

.search-huge-a162 .element-pressed-df10 li strong {
    color: var(--text-white);
}

.lower_e52f {
    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);
}

.lower_e52f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lower_e52f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.brown-a6ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-red-69ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component-red-69ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel-current-c956 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel-current-c956:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card_ead1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon_b848 {
    font-size: 2rem;
}

.old-8501 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hover_fast_9183 {
    flex: 1;
}

.container-0ccc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-0ccc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.container-0ccc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.active-dc20 {
    margin-top: 3rem;
}

.text_cb4b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.element-f697 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component_bfdd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component_bfdd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.component_bfdd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.component_bfdd li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.tooltip_0a86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-1ab1 {
    margin: 2rem 0;
}

.motion_cc08 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.motion_cc08 .outer-f0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media_motion_8bb4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media_motion_8bb4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame_f499 {
    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);
}

.frame_f499:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notification-fea1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.avatar_liquid_fdfd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.west_447e {
    padding: var(--section-padding);
}

.panel-inner-e991 {
    margin: 2rem 0;
}

.pattern-fresh-8eb5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .pattern-fresh-8eb5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern-fresh-8eb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_096e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.in_096e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label_5687 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chip_0365 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.huge_9ded {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.huge_9ded.hard-97ee {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.widget_703a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.menu-2f91 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.button-8792 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.row_glass_6221 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty_0cd9 {
    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);
}

.dirty_0cd9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty_0cd9 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.border_action_aa46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-new-73e5 {
    margin: 2rem 0;
}

.shadow-left-8d26 {
    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) {
    .shadow-left-8d26 {
        flex-direction: column;
        gap: 1rem;
    }
}

.shadow-left-8d26:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shadow-left-8d26::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);
}

.smooth-268e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.border_north_4173 {
    flex: 1;
}

.section_yellow_9441 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled_basic_6548 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_basic_6548 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-6237 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-steel-01a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern-motion-708c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pattern-motion-708c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_23c8 {
    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);
}

.component_1109 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link_cool_da2a {
    flex: 1;
}

.down-8f1d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tooltip-in-8850 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.last_b68a {
    margin-top: 2rem;
    text-align: center;
}

.active_9280 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_9280 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tag-white-2b46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-white-2b46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-white-cdab {
    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);
}

.paragraph-white-cdab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paragraph-white-cdab .gallery_upper_ac46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph-white-cdab .liquid_03cd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.paragraph-white-cdab .summary-f3da {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.paragraph-white-cdab .panel-64cd {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.feature-3bf5 {
    padding: var(--section-padding);
}

.up-e613 .accent-in-2663 {
    flex: 1;
}

/* Promo Calendar Section */
.photo_hard_635c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-9a03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-9a03 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-f6ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_bb63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail-bc56 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pattern_3c16 {
    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);
}

.preview-fe77 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.surface-selected-ac3c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.complex-5453 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.complex-5453 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex-5453 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.stale-8ded {
    padding: var(--section-padding);
}

.footer-down-8b12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer-down-8b12 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary_small_5ae5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-a13a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_a29a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article_a29a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-outer-99bc {
    margin-top: 3rem;
}

.menu-outer-99bc .text_cb4b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.menu-outer-99bc .element-f697 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu-outer-99bc .component_bfdd {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.menu-outer-99bc .component_bfdd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.menu-outer-99bc .component_bfdd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.menu-outer-99bc .component_bfdd li strong {
    color: var(--warning-color);
}

.bronze-98fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bronze-98fe strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.mask_last_225a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-0833 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-0833 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-selected-d379 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-selected-d379 .outer-f0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.medium-c957 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.north-425f {
    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);
}

.north-425f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar_f6a0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.in_085d {
    flex: 1;
}

.logo_middle_6e35 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.video_inner_cce5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.current-fe1b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.photo_fac9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hover-82cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .hover-82cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-94a5 {
    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);
}

.article-94a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.detail_d69f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hovered_9623 {
    color: var(--text-gray);
    font-size: 1rem;
}

.mini_dd03 {
    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);
}

.label_simple_269f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.label_simple_269f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.modal-a01e { 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; }
.prev-e0a7, .summary-4a27 { max-width:100%; height:auto; }

.easy_c9c0, .media_3e33, .wrapper-south-16ef { white-space:normal; }

.widget-99b5,
.section-17b9,
.pink_3c8e,
.tag-white-2b46,
.east-2f5f,
.easy-61da {
  flex-wrap:wrap;
}

[class*="grid"],
.hover-82cb,
.pattern-fresh-8eb5,
.highlight_2a9a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.right_5295 img,
.section-17b9 img,
.active-665d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.tertiary-5068, .carousel-a446,
.first_24d1, .surface-34c5 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.popup-first-cb9c { width:100%; overflow-x:auto; }
.popup-first-cb9c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hover-8fee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hover-8fee {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.gallery-static-a27a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.south_53a1,
.texture_liquid_c2fd,
.hot-876b,
.list_0dee,
.pattern_last_9cca,
.hover-82cb,
.pattern-fresh-8eb5,
.highlight_2a9a,
.avatar_hovered_6f5d,
.block-mini-a8c7,
.hover-8fee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .south_53a1,
  .texture_liquid_c2fd,
  .hot-876b,
  .list_0dee,
  .pattern_last_9cca,
  .hover-82cb,
  .pattern-fresh-8eb5,
  .highlight_2a9a,
  .avatar_hovered_6f5d,
  .block-mini-a8c7,
  .hover-8fee {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.action-164f,
.notification_fluid_bb3f,
.article-94a5,
.module-95f1,
.in_096e,
.tertiary_east_5008,
.carousel_90c2,
.gallery-static-a27a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.dirty-7e38,
.button_wide_edef,
.prev_6a6d {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.dirty-7e38 > *,
.button_wide_edef > *,
.prev_6a6d > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6c6c */
.widget-item-j8 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
