/* {$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;
}

.component_0714 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hero-3f36 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-3f36 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-3f36 {
        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 */
.background-35aa {
    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);
}

.mini-7046 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .mini-7046 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .slow-7556 {
        grid-column: 1;
    }
    
    .active-e167 {
        grid-column: 2;
    }
    
    .detail-7766 {
        grid-column: 3;
    }
}

.slow-7556 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.slow-7556:hover img {
    transform: scale(1.05);
}

/* Navigation */
.breadcrumb_next_4089 {
    display: none;
}

@media (min-width: 1024px) {
    .breadcrumb_next_4089 {
        display: block;
    }
}

/* Grouped Navigation */
.easy_b9be {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mini-d98a {
    position: relative;
}

.carousel-86c2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.mini-d98a .under_2de7 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.under_2de7 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.section-east-44a9 {
    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;
}

.section-east-44a9:hover,
.section-east-44a9.fn-active-2626 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.surface-c00b {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .surface-c00b {
        display: flex;
    }
}

/* Mobile Register Button */
.active-e167 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .active-e167 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.panel-4b4e {
    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;
}

.panel-4b4e::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.detail-7766 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .detail-7766 {
        display: none;
    }
}

.detail-7766 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.detail-7766.fn-active-2626 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.detail-7766.fn-active-2626 span:nth-child(2) {
    opacity: 0;
}

.detail-7766.fn-active-2626 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.old_45c1 {
    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;
}

.old_45c1.fn-active-2626 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.steel_66ec {
    overflow: hidden;
}

.column_cold_a253 {
    list-style: none;
    padding: 0.75rem 0;
}

.carousel-steel-6d5d {
    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;
}

.carousel-steel-6d5d:hover,
.carousel-steel-6d5d.fn-active-2626 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.carousel-steel-6d5d.complex-12b5 {
    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;
}

.carousel-steel-6d5d.complex-12b5::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 */
.widget_9849 {
    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;
}

.photo_0ce6 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.photo_0ce6:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.breadcrumb_6014 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.breadcrumb_6014:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.copper_3fc3 {
    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;
}

.copper_3fc3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.disabled_2204 {
    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;
}

.carousel-simple-7561 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.carousel-simple-7561:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.item-active-8324 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.item-active-8324:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.texture-fast-601c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.texture-fast-601c: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);
}

.sidebar_hovered_4e14 {
    font-size: 1em;
    font-weight: 700;
}

.yellow-3c21 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.south-296f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.south-296f::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;
}

.description-over-c3a9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .description-over-c3a9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.avatar_smooth_140b {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.main-paper-e622 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.white-a023 {
    margin-bottom: 2rem;
}

.sidebar-full-6fc6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sidebar-full-6fc6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-bbd0 {
    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);
}

.wrapper_9964 {
    font-size: 1.5rem;
}

.basic-50d3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hidden-0e6a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-easy-574d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.heading-easy-574d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gradient-68b6 {
    text-align: center;
    margin-bottom: 3rem;
}

.dirty-8bf2 {
    margin-bottom: 1rem;
}

.block_2a1f {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tabs-gold-b07e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tabs-gold-b07e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tabs-gold-b07e.green_dcbc {
        direction: rtl;
    }
    
    .tabs-gold-b07e.green_dcbc > * {
        direction: ltr;
    }
}

.article-6c38 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.article-6c38:first-child {
    margin-top: 0;
}

.surface_cool_2c26 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.table-copper-957b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.table-copper-957b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.basic-a0e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic-a0e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_south_4be9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary-under-7ab8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hovered-25c4 {
    list-style: none;
}

.hovered-25c4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered-25c4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.bottom_8bda {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.block_4905 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pattern_outer_388e {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.hover-wood-8bcb {
    margin: 2rem 0;
}

.badge_blue_88bb {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.smooth-01f9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.first-35c0 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.fast-f39e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.avatar-left-7b43 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-left-7b43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-4ebe {
    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);
}

.black-4ebe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-216b {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.badge-gold-a956 {
    font-size: 1.5rem;
}

.basic-3e79 {
    color: var(--accent-color);
    margin: 0;
}

.info_dirty_90b5 {
    list-style: none;
}

.info_dirty_90b5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.info_dirty_90b5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.info_white_b465 {
    margin: 2rem 0;
}

.module-short-e74d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.notice-4e62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .notice-4e62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_eb89 {
    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);
}

.old_f1fe {
    font-size: 1.25rem;
}

.wood_2a8b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.menu_7a55,
.dirty-6b4d {
    text-align: center;
    margin: 2rem 0;
}

.card-d15c,
.wrapper-stone-92f3 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.narrow_59c7 {
    margin: 2rem 0;
    text-align: center;
}

.pagination-dbd6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pagination-dbd6::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;
}

.footer_advanced_b02f {
    position: relative;
    z-index: 1;
}

.slider-6af1 {
    margin-bottom: 1rem;
}

.in-1972 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.huge-b0c8 {
    margin-bottom: 3rem;
}

.hot-f29a {
    margin-top: 3rem;
}

.notification_e839 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .notification_e839 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_e839 .thumbnail-bbd0 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_bottom_aedc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip-tall-9508 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.purple_0827 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.blue_64fa {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .blue_64fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blue_64fa {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.logo_short_48f0 {
    margin-bottom: 1rem;
}

.north_b525 img {
    margin-bottom: 1rem;
}

.icon_388b {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_old_f025 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.plasma_85a2 {
    list-style: none;
}

.plasma_85a2 li {
    margin-bottom: 0.5rem;
}

.plasma_85a2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.plasma_85a2 a:hover {
    color: var(--accent-color);
}

.old-99a2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.left-bc87 {
    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);
}

.left-bc87:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.menu-prev-5a45 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.menu-prev-5a45 p {
    margin-bottom: 0.25rem;
}

.preview_1e31 {
    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) {
    .preview_1e31 {
        flex-direction: row;
    }
}

.panel-9741 {
    text-align: center;
}

@media (min-width: 768px) {
    .panel-9741 {
        text-align: left;
    }
}

.panel-9741 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.clean-7118 {
    font-size: 0.75rem !important;
}

.sidebar_c916 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.old-5caa {
    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);
    }
}

.article-4c84 {
    animation: fadeInUp 0.6s ease-out;
}

.top_57ea {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.wrapper_light_8a69 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_light_8a69 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pagination_dark_4081 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_dark_4081 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_bf88 {
    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);
}

.steel_bf88 .pattern_outer_388e {
    font-size: 1.25rem;
}

.steel_bf88 .fixed_bdb6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.glass-5828 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .glass-5828 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white_ccbb {
    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_ccbb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_clean_7493 {
    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);
}

.pagination_4e92 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header_9196 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-d644 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast_a303 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fast_a303 .aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fast_a303 .breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

.small_0665 {
    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);
}

.text-6b47 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.text-6b47 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.text-6b47 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hovered_f44d {
    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);
}

.active-old-a2a7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.out_c8ee {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.out_c8ee label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.out_c8ee 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);
}

.out_c8ee input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.out_c8ee input::placeholder {
    color: var(--text-muted);
}

.tertiary_fb3e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.message_medium_2475 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.message_medium_2475 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.button-9bc0 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.button-9bc0:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.notice-4e62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-4e62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_eb89 {
    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);
}

.overlay_eb89 .old_f1fe {
    font-size: 1.25rem;
}

.overlay_eb89 .wood_2a8b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.form-2fad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-8e0c {
    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);
}

.solid-8e0c .pattern_outer_388e {
    font-size: 2rem;
    flex-shrink: 0;
}

.solid-8e0c .aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid-8e0c .breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-ef7f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_8d15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_8d15 .stale-4e01 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter_8d15 .hard_5f17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_ec22 {
    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);
}

.video-warm-15cf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-warm-15cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north-75bc {
    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);
}

.north-75bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-6397 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.liquid_17fd {
    flex: 1;
}

.static-fab0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active_3d09 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.input_29c4 {
    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);
}

.input_29c4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.heading_36b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_36b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_next_3649 {
    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_next_3649:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in-6cde {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-narrow-117b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-gas-3bc0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.chip_dirty_2b72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.east_c198 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_fast_05af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short_da87 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.short_da87 .secondary_2cfc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short_da87 .selected-ed3a {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_088b {
    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);
}

.table_stone_6bca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_52f1 {
    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);
}

.old_52f1 .pattern_outer_388e {
    font-size: 2rem;
    flex-shrink: 0;
}

.old_52f1 .aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_52f1 .breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_8053 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_8053 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_d8a7 {
    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);
}

.next_d8a7:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.tag_1e84 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_1e84 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_purple_d765 {
    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);
}

.border_purple_d765:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_edab {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-out-f52d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.smooth-01f9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.shadow_6b50 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.out_b2b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion-eac2 {
    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);
}

.motion-eac2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-down-93e2 {
    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);
}

.north_087c {
    flex: 1;
}

.icon_white_eff5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.next_cd93 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.carousel_0fb2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced-ae3d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green-8e77 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-8e77 .stale-4e01 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.green-8e77 .hard_5f17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-6b4d {
    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);
}

.popup-0c64 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-0c64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.silver-f500 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-f500 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-8a5c {
    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);
}

.breadcrumb-8a5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-8b0a {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-fast-962c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.solid-4832 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.button-a5ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue_dc3b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast-d505 {
    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);
}

.steel_4f53 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_f9d2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short_8dc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_stone_6bca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_52f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.old_52f1 .aside-hard-e96b {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.old_52f1 .breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-motion-6627 {
    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);
}

.primary_d9f6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary_d9f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary_d9f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_dc7c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.basic_dc7c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_warm_6834 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.over_d904 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.chip-liquid-2b01 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.primary_c17e {
    padding: 1.5rem;
}

.primary_fb27 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.east_55a2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east_55a2 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;
}

.east_55a2 li:last-child {
    border-bottom: none;
}

.east_55a2 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.button-new-c2ab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-new-c2ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-32b6 {
    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);
}

.hidden-32b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-333d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-2162 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outline_c048 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination_lower_e20c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next_6b91 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_d1ea {
    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);
}

.large_a081 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-current-98ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy-9d3a {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_9d53 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip_upper_78c4 {
    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);
}

.dropdown_7869 {
    text-align: center;
}

.copper_f790 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover-brown-045b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border-faac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_3a00 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_3a00 .aside-hard-e96b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_3a00 .breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_d37d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block_d37d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_d37d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper-89ca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.copper-89ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-north-6839 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header_b5ad {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside-hard-e96b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.picture_dim_9376 {
    padding: 1.5rem;
}

.breadcrumb-9518 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wrapper_outer_f607 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_outer_f607 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;
}

.wrapper_outer_f607 li:last-child {
    border-bottom: none;
}

.wrapper_outer_f607 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.brown_0917 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.footer_a151 {
    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);
}

.footer_a151:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_3d5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-16e0 {
    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);
}

.frame_clean_7493 {
    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;
}

.pagination_4e92 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_9196 {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm-2989 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_14f8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-static-c3f1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout_fce7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.layout_thick_b6cc {
    display: flex;
    gap: 1rem;
}

.layout_thick_b6cc .red-8171 {
    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;
}

.north_95e6 {
    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);
}

.alert_soft_75ab {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next-4947 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-4947 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;
}

.next-4947 li:last-child {
    border-bottom: none;
}

.next-4947 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.detail_a8b9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail_a8b9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_a8b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_7076 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button_7076:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-ada5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.outline_easy_6f16 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary_2cfc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.icon_plasma_2cc5 {
    font-size: 1rem;
}

.pro_2873 {
    padding: 1.5rem;
}

.selected-ed3a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.logo_dim_1e35 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.logo_dim_1e35 .dropdown_7869 {
    text-align: center;
}

.logo_dim_1e35 .hover-brown-045b {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.logo_dim_1e35 .progress-1dd8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.popup_pink_1cf5 {
    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);
}

.popup_pink_1cf5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tooltip-e16f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-e16f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_bafb {
    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);
}

.paper_bafb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_3134 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_7c2c {
    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);
}

.focus-fluid-3e38 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-fluid-b31b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite_0669 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-fd87 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.notice-over-fb52 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_east_25f9 {
    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);
}

.summary_af0a {
    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;
}

.summary_af0a.picture_b78d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.summary_af0a.description-bb47 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.summary_af0a.button_focused_3303 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.summary_af0a.tooltip-dim-f4ba {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.summary_af0a.surface-40f2 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hover-5b22 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame-left-b69d {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_dark_76ba {
    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);
}

.glass-49e0 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.under-ef7f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.under-ef7f 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;
}

.under-ef7f li:last-child {
    border-bottom: none;
}

.under-ef7f li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.link_4feb {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_4feb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_4feb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_fb1f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paragraph_fb1f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_fb1f.out_7a44 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .paragraph_fb1f.out_7a44 {
        grid-column: span 3;
    }
}

.pagination-fixed-e1a3 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.paragraph_fb1f.out_7a44 .pagination-fixed-e1a3 {
    background: rgba(6, 182, 212, 0.1);
}

.gold_ab73 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sidebar_warm_5275 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.paragraph_fb1f.out_7a44 .sidebar_warm_5275 {
    color: var(--info-color);
}

.copper_f380 {
    padding: 1.5rem;
    text-align: center;
}

.picture-pressed-355f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.paragraph_fb1f.out_7a44 .picture-pressed-355f {
    color: var(--info-color);
}

.sidebar_paper_739f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.container_hot_5900 {
    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 */
.black_9cd1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .black_9cd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-gas-f546 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-gas-f546:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_ea56 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-8e0c {
    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);
}

.old_f1fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro_6116 {
    flex: 1;
}

.module-short-e74d {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight_right_07bd {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale_12c3 {
    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);
}

.message_gas_2100 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.layout_48e5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.old-5caa {
    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);
}

.column_ee21 {
  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);
}

.column_ee21 .dropdown_7869 {
    text-align: center;
}

.column_ee21 .copper_f790 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.column_ee21 .hover-brown-045b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-copper-1938 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_3b8e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-31bf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dim-1d68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-7052 {
    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);
}

.image-fluid-470f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status-aa53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_huge_b029 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .module_huge_b029 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_huge_b029 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-easy-5fed {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary-easy-5fed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-7881 {
    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);
}

.paragraph_top_9f8b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.green-e736 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shadow-c1e2 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shadow-c1e2.outline_rough_694d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shadow-c1e2.dark-342a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.shadow-c1e2.frame-huge-8da3 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.brown_6c7a {
    padding: 1.5rem;
    text-align: center;
}

.status-407b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner-brown-35cd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.banner-brown-35cd .accordion-down-aa78 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.east_9c74 {
    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);
}

.east_9c74:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-full-f8ff {
  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);
}

.text_29da {
    text-align: center;
}

.text_29da .copper_f790 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.text_29da .hover-brown-045b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.header_cd66 { text-align: center; }
.button-selected-d59e { text-align: left; }
.advanced-3b06 { text-align: right; }

.row-fresh-075f { margin-bottom: 0; }
.fast-c50b { margin-bottom: 0.5rem; }
.mini_7a0b { margin-bottom: 1rem; }
.header_south_d789 { margin-bottom: 1.5rem; }
.prev_f8c8 { margin-bottom: 2rem; }

.over_432c { margin-top: 0; }
.sort-fa1b { margin-top: 0.5rem; }
.background-liquid-547b { margin-top: 1rem; }
.container-plasma-b549 { margin-top: 1.5rem; }
.west-eda1 { margin-top: 2rem; }

.fn-hidden-2626 { display: none; }
.fn-visible-2626 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .south-296f {
        padding: 6rem 0 3rem;
    }
    
    .description-over-c3a9 {
        text-align: center;
    }
    
    .tabs-gold-b07e {
        text-align: center;
    }
    
    .sidebar-full-6fc6 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .background-35aa,
    .old_45c1,
    .pagination-dbd6,
    .purple_0827 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .south-296f {
        background: none;
    }
}

/* Providers Section */
.modal_advanced_5f02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_fresh_b057 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_fresh_b057 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_fresh_b057 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-8e58 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail-8e58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-in-1446 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blue-5bed {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element-action-c2af {
    list-style: none;
    padding: 0;
}

.element-action-c2af li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.element-action-c2af li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.old_b194 {
    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);
}

.old_b194 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.main-liquid-a9a8 {
    padding: var(--section-padding);
}

.outer-704e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer-704e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_north_9b5b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.chip_north_9b5b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.list_74f8 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.box_59e2 {
    display: flex;
    flex-direction: column;
}

.widget-next-bba4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero-yellow-eebe {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.message-e1e2 {
    color: var(--accent-color);
}

.status_silver_a8c4 {
    font-size: 1.25rem;
}

.texture-small-6c85 {
    margin-bottom: 1rem;
}

.texture-small-6c85 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.slider-66b2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.table-9b53 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.dropdown_7869 {
    text-align: center;
}

.copper_f790 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover-brown-045b {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.rough-9d75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-2e92 {
    margin: 2rem 0;
}

.border-abc3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.border-abc3 .pattern_outer_388e {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_prev_7bb6 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.container_hot_eb17 {
    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;
}

.container_hot_eb17:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pro_d96b {
    font-size: 2rem;
}

.focused_67a5 {
    display: flex;
    flex-direction: column;
}

.widget_03b6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero_8c15 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.huge-7067 {
    padding: var(--section-padding);
}

.footer-3ca7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer-3ca7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-3ca7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-5e81 {
    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);
}

.prev-5e81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.prev-5e81 .copper_f790 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.prev-5e81 .hover-brown-045b {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.prev-5e81 .chip-996b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.border-up-6596 {
    margin-top: 4rem;
}

.upper_ae0c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.avatar-123b {
    overflow-x: auto;
}

.wide-2c64 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wide-2c64 thead {
    background: var(--accent-color);
}

.wide-2c64 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.wide-2c64 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-2c64 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.wide-2c64 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.shadow_8bf3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black-00c7 {
    max-width: 900px;
    margin: 0 auto;
}

.short_5d38 {
    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);
}

.short_5d38:hover {
    border-color: var(--accent-color);
}

.input_2872 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.input_2872 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.chip_b314 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.short_5d38.fn-active-2626 .chip_b314 {
    transform: rotate(45deg);
}

.list-8b70 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.short_5d38.fn-active-2626 .list-8b70 {
    max-height: 1000px;
}

.list-8b70 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.north_0c45 {
    padding: var(--section-padding);
}

.text-6b47 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.image_e581 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver_c7a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver_c7a0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-old-ac63 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_fcfa {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.medium_a97a {
    font-size: 2rem;
}

.footer-brown-52ef {
    color: var(--text-white);
    margin: 0;
}

.medium-60a4 {
    list-style: none;
    padding: 0;
}

.medium-60a4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium-60a4 li:last-child {
    border-bottom: none;
}

.smooth-d551 {
    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);
}

.smooth-d551 p {
    color: var(--success-color);
    margin: 0;
}

.focus-b2d3 {
    margin-top: 3rem;
}

.alert_soft_75ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input_d83f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input_d83f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel-outer-da64 {
    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);
}

.card-6db7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel-outer-da64 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.overlay-20f3 {
    padding: var(--section-padding);
}

.highlight-wood-6006 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-wood-6006 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_6275 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.badge_6275:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.table_pink_7864 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tabs-d797 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_brown_6399 {
    flex: 1;
}

.pattern_iron_0b73 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tall_7d29 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.container-down-c50c {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-lower-8136 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper-lower-8136:last-child {
    border-bottom: none;
}

/* Comparison Section */
.over-ad83 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.steel_af39 {
    padding: var(--section-padding);
}

.shade_selected_d230 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.dropdown-ab29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-ab29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-hard-981d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last_4f30, .mask-43fe, .accent_b9d6 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.accent_b9d6 {
    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 */
.rough_8a66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_6091 {
    margin: 2rem 0;
}

.block-43f7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-blue-4c7f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.label_dc08 {
    list-style: none;
    padding: 0;
}

.label_dc08 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;
}

.label_dc08 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.label_dc08 li:last-child {
    border-bottom: none;
}

.accent_81ef {
    text-align: center;
    margin-top: 2rem;
}

.tag-pro-ddc4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.slider-e1de {
    padding: var(--section-padding);
}

.chip_8029 {
    margin: 2rem 0;
}

.right_90c6 {
    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) {
    .right_90c6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.right_90c6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool_9cd5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.highlight_e15a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.slider_under_2f44 {
    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;
}

.header-9d8d {
    flex: 1;
}

.wood-b1c7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.input_4c40 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.component_b014 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.hover-fresh-e277 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .hover-fresh-e277 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.first-4e1e {
    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);
}

.first-4e1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-4e1e .copper_f790 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.first-4e1e .hover-brown-045b {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-middle-fa5f {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_caeb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.active_caeb strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.focus-68dd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .focus-68dd {
        grid-template-columns: 1fr 1fr;
    }
}

.panel-gas-bdcf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_9880 {
    margin-bottom: 1.5rem;
}

.list_9880 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.list_9880 input,
.list_9880 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;
}

.list_9880 input:focus,
.list_9880 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.wide-c0e7 {
    width: 100%;
    margin-top: 1rem;
}

.paper-4173 {
    display: flex;
    align-items: center;
}

.thick_78f7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.element_simple_8681 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.rough-4f7e {
    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;
}

.selected_cf39 {
    color: var(--text-gray);
}

.dropdown-82ad {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.wide-f59e {
    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);
}

.wide-f59e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.secondary_over_5f14 {
    margin-top: 3rem;
}

.title-9a0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.search-9a41 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-ddd7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient-purple-90b9 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-purple-90b9:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.header_16db {
    padding: var(--section-padding);
}

.summary_blue_29fd {
    margin: 2rem 0;
}

.rough_d9b2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.alert_eea9 {
    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;
}

.alert_eea9:hover, .alert_eea9.fn-active-2626 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.text-small-c732 {
    display: none;
}

.text-small-c732.fn-active-2626 {
    display: block;
}

.middle_277d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-orange-ef01 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled-medium-8d0d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.disabled-medium-8d0d ul {
    list-style: none;
    padding: 0;
}

.disabled-medium-8d0d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.disabled-medium-8d0d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.feature-purple-538e {
    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 */
.orange_9612 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-bc75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-c255 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.button_gas_7e0f {
    color: var(--accent-color);
    margin: 0;
}

.link-brown-156f {
    display: flex;
    gap: 1.5rem;
}

.overlay_orange_ee58 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pink-d3c8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.header-f145 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.header-f145.message-stale-a056 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.header-f145.border-brown-3c79 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.header-f145.container-north-bb88 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hard_947d {
    margin-top: 2rem;
}

.panel-50e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accordion-b007 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .accordion-b007 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass-6429 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.gold-8d41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.slow_9253 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.fluid_a49c {
    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 */
.outline_static_5356 {
    padding: var(--section-padding);
}

.clean_95f6 {
    margin: 2rem 0;
}

.action-b615 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.badge-old-895f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.frame_green_399d {
    list-style: none;
    padding: 0;
}

.frame_green_399d 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;
}

.frame_green_399d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.frame_green_399d li:last-child {
    border-bottom: none;
}

.thumbnail-stale-6fb1 {
    margin: 2rem 0;
}

.lower_b764 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.east-cee9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .east-cee9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_over_e1a4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-2127 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.static-9a67 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focus_dirty_2da8 {
    margin-top: 2rem;
}

.static-fab0 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.media-b34d {
    list-style: none;
    padding: 0;
}

.slider_f132 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.slider_f132 a {
    color: var(--accent-color);
    text-decoration: none;
}

.slider_f132 a:hover {
    text-decoration: underline;
}

.description-1be7 {
    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 */
.paragraph-top-2df9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_solid_fa4e {
    margin: 2rem 0;
}

.picture_74cc {
    margin-bottom: 3rem;
}

.picture_74cc .message-blue-4c7f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tabs-west-1ef0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search_glass_0c2a {
    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);
}

.search_glass_0c2a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.notification-806d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .notification-806d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini_95ea {
    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 */
.hot-4a7f {
    padding: var(--section-padding);
}

.wrapper-1234 {
    margin: 2rem 0;
}

.purple_bb66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.container-steel-13f2 {
    overflow-x: auto;
    margin: 2rem 0;
}

.menu_75d2 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.small-40fe {
    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;
}

.thick-fdf4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.info-10d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .info-10d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_bright_636c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_bright_636c .pattern_outer_388e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.element_bright_636c .aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-830a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.middle_bf10 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_d7ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_d7ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_d640 {
    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;
}

.liquid_d640:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.photo-tiny-02c4 {
    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);
}

.lower_5de5 {
    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;
}

.right_712c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pink-8a9f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.image_795b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pattern_5ac4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.texture-focused-b2bb {
    color: var(--text-white);
    font-weight: 600;
}

.card-pro-8dac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link-3091 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link-3091 .red-8171 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_2e7f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask_2e7f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_pink_23b0 {
    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);
}

.slider_pink_23b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider_pink_23b0 .copper_f790 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider_pink_23b0 .hover-brown-045b {
    color: var(--text-gray);
    font-size: 1rem;
}

.input-medium-d560 {
    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);
}

.secondary_1c69 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.secondary_1c69 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.blue_dc3b {
    margin: 2rem 0;
}

.fast-d505 {
    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);
}

.fast-d505:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.steel_4f53 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.title_f223 {
    flex: 1;
}

.menu_f9d2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short_8dc0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.table_stone_6bca {
    margin: 2rem 0;
}

.old_52f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old_52f1 .aside-hard-e96b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.old_52f1 .breadcrumb-9518 {
    color: var(--text-gray);
    margin: 0;
}

.panel-motion-6627 {
    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);
}

.panel-motion-6627 .card-d15c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hard-830a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.list-down-93e2 {
    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;
}

.north_087c {
    flex: 1;
}

.next_cd93 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.carousel_0fb2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.frame_clean_7493 {
    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;
}

.silver_4f19 {
    flex: 1;
}

.pagination_4e92 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.header_9196 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.popup-static-c3f1 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.layout_fce7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.layout_thick_b6cc {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.layout_thick_b6cc .red-8171 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.north_95e6 {
    margin-top: 2rem;
}

.north_95e6 .alert_soft_75ab {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.overlay-steel-891a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_upper_78c4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip_upper_78c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_upper_78c4 .dropdown_7869 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-faac {
    margin: 2rem 0;
}

.active_3a00 {
    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 */
.block-light-1edf {
    padding: var(--section-padding);
}

.picture_dim_9376 {
    margin-top: 1rem;
}

.wrapper_outer_f607 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.wrapper_outer_f607 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wrapper_outer_f607 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.solid-08ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-yellow-a83d {
    margin: 2rem 0;
}

.simple-c19b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.lite_7e20 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hover_pink_1cbb {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.column-next-22b2 {
    margin: 2rem 0;
}

.fast_109d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.fast_109d .message-blue-4c7f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange-fa6a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orange-fa6a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content_warm_878a {
    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);
}

.column-clean-239a {
    color: var(--text-white);
    font-weight: 600;
}

.photo_purple_c8ad {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.accordion_huge_abbb {
    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);
}

.accordion_huge_abbb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.inner_b663 {
    padding: var(--section-padding);
}

.surface_891e {
    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;
}

.surface_891e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.element-da44 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element-da44 .card-6db7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-da44 .soft-f274 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content_dim_09e8 {
    flex: 1;
}

.panel-590e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pattern_complex_40b1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_complex_40b1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pattern_complex_40b1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus_bronze_ad66 {
    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);
}

.focus_bronze_ad66 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_bronze_ad66 strong {
    color: var(--warning-color);
}

/* Slots Section */
.brown-129b {
    padding: var(--section-padding);
}

.east_c198 {
    margin: 2rem 0;
}

/* Table Games Section */
.hero-plasma-99b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_fast_05af {
    margin: 2rem 0;
}

.short_da87 {
    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);
}

.short_da87:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.short_da87 .secondary_2cfc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short_da87 .selected-ed3a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.link_088b {
    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);
}

.link_088b .card-d15c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.gradient_action_74eb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_3e81 {
    margin: 2rem 0;
}

.copper_4b94 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_up_e557 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood_4d07 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.copper_1b58 {
    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);
}

.copper_1b58:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.copper_1b58.fn-active-2626 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-last-90cb {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.modal_center_e6fd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_center_e6fd strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.grid_72b0 {
    padding: var(--section-padding);
}

.black-f265 {
    margin: 2rem 0;
}

.fixed_e0e8 {
    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);
}

.fixed_e0e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fixed_e0e8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.full-4f9a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.photo-smooth-f153 {
    flex: 1;
}

.bright_360a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.north-a08e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.video_e5ca {
    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;
}

.in-889b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.south-d1aa {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.action_9561 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.carousel_east_5521 {
    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;
}

.carousel_east_5521:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cold_1125 {
    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);
}

.hovered_b20e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered_b20e strong {
    color: var(--accent-color);
}

/* New Games Section */
.search_blue_9cbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_out_a489 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content_out_a489 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_out_a489 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_thick_795b {
    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;
}

.main_thick_795b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.green_f0f6 {
    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;
}

.notification-narrow-4c6d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.paper-6155 {
    font-size: 2rem;
}

.fluid-db76 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.media-04a2 {
    flex: 1;
}

.info-blue-5535 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.message-left-3710 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pagination_8ac8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message-black-998c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.container_large_c019 {
    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;
}

.yellow_ac6b {
    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;
}

.yellow_ac6b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search-739a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_0fb4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow-c2d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .yellow-c2d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under_c822 {
    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);
}

.description-ed1d {
    color: var(--text-white);
    font-weight: 600;
}

.pagination-e731 {
    color: var(--accent-color);
    font-weight: 600;
}

.bottom-bbbf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.bottom-bbbf strong {
    color: var(--accent-color);
}

/* Security Section */
.blue_923e {
    padding: var(--section-padding);
}

/* Benefits Section */
.link-b6d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.notice_static_6525 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.heading_warm_6746 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue-d36a {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.smooth-e68a {
    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) {
    .smooth-e68a {
        flex-direction: column;
        gap: 1rem;
    }
}

.smooth-e68a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.smooth-e68a .frame_clean_7493 {
    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;
}

.smooth-e68a .silver_4f19 {
    flex: 1;
}

.smooth-e68a .pagination_4e92 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.smooth-e68a .header_9196 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.notification_8284 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_8284 .module-short-e74d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification_8284 .form-2fad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_8284 .form-2fad li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.notification_8284 .form-2fad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.item-801e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.tabs_tall_8be8 {
    padding: var(--section-padding);
}

.north_8413 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .north_8413 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-middle-5a06 {
    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);
}

.header-middle-5a06:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.header-middle-5a06 .detail-7534 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-middle-5a06 .section_cdfd {
    flex: 1;
}

.header-middle-5a06 .stale-4e01 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header-middle-5a06 .module-d871 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.current-3892 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-3892 .fast-7085 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current-3892 .shade_0859 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.current-3892 .shade_0859 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);
}

.current-3892 .shade_0859 li:last-child {
    border-bottom: none;
}

.current-3892 .shade_0859 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;
}

.current-3892 .shade_0859 li strong {
    color: var(--text-white);
}

.border_stone_b57e {
    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);
}

.border_stone_b57e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border_stone_b57e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.yellow-da79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down-27dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .down-27dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip-smooth-481d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.chip-smooth-481d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message_pro_6122 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mask_364f {
    font-size: 2rem;
}

.text_6dfb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notice_in_f801 {
    flex: 1;
}

.description-7c88 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-7c88 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.description-7c88 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus-a4d0 {
    margin-top: 3rem;
}

.action-b615 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.badge-old-895f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame_green_399d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_green_399d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.frame_green_399d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.frame_green_399d li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.card-dirty-0d1d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_3d2b {
    margin: 2rem 0;
}

.status-ce49 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.status-ce49 .message-blue-4c7f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_ff74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wide_ff74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prev-0a1b {
    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);
}

.prev-0a1b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.alert-6ff3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tertiary_south_a7a3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.menu-fluid-079e {
    padding: var(--section-padding);
}

.wood-a357 {
    margin: 2rem 0;
}

.last_6b36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .last_6b36 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last_6b36 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_0c7a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fresh_0c7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary_dark_c806 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gradient_under_d0f3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.heading_6aea {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.heading_6aea.pagination-outer-38a7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.logo_rough_8d67 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.logo-gold-0236 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.old_088e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_4b0c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline-west-31d0 {
    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);
}

.outline-west-31d0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline-west-31d0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.surface-88b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered_1548 {
    margin: 2rem 0;
}

.list-outer-7f76 {
    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) {
    .list-outer-7f76 {
        flex-direction: column;
        gap: 1rem;
    }
}

.list-outer-7f76:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.list-outer-7f76::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);
}

.paragraph_c68e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.component-6852 {
    flex: 1;
}

.status-first-8848 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.progress-1bb4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-1bb4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.row_0a81 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-plasma-782d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_action_8d94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_action_8d94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-hot-9c2a {
    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);
}

.full_a72f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.block-fast-389b {
    flex: 1;
}

.video_green_404d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.new_4a35 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary-67eb {
    margin-top: 2rem;
    text-align: center;
}

.list_7395 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.list_7395 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tooltip-e16f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-e16f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_bafb {
    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);
}

.paper_bafb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paper_bafb .button-333d {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper_bafb .tag-2162 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.paper_bafb .outline_c048 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.paper_bafb .pagination_lower_e20c {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.backdrop_e953 {
    padding: var(--section-padding);
}

.gold_7c2c .alert_steel_ea73 {
    flex: 1;
}

/* Promo Calendar Section */
.last_bda6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh-a8f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh-a8f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-prev-f0d9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-cab2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hard-2e28 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-5c78 {
    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);
}

.full_91fb {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip-dirty-78c0 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.black_db12 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.black_db12 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black_db12 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.popup_1c9b {
    padding: var(--section-padding);
}

.middle-470f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .middle-470f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_9090 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-dc9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner_selected_3807 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_selected_3807 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.background_36b4 {
    margin-top: 3rem;
}

.background_36b4 .action-b615 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.background_36b4 .badge-old-895f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background_36b4 .frame_green_399d {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.background_36b4 .frame_green_399d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.background_36b4 .frame_green_399d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.background_36b4 .frame_green_399d li strong {
    color: var(--warning-color);
}

.lite_d8e1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lite_d8e1 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gallery_fluid_fab5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-6f83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-6f83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.west_a9c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west_a9c0 .message-blue-4c7f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.title-glass-295c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-23bd {
    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);
}

.photo-23bd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.header_c5d8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-1ddc {
    flex: 1;
}

.button_2ee2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.caption-72dd {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_hard_39be {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.modal_fast_56da {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.image_middle_2129 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .image_middle_2129 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-e511 {
    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);
}

.menu-e511:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight_top_843c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-yellow-6b43 {
    color: var(--text-gray);
    font-size: 1rem;
}

.active_caeb {
    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);
}

.tag_152a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag_152a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hero-3f36 { width:100%; max-width:1200px; padding:0 16px; box-sizing:border-box; }
* { box-sizing:border-box; }

img, video, svg { max-width:100%; height:auto; display:block; }
.heading-easy-574d, .table-copper-957b { max-width:100%; height:auto; }

.widget_9849, .copper_3fc3, .disabled_2204 { white-space:normal; }

.description-over-c3a9,
.tabs-gold-b07e,
.black_9cd1,
.tooltip-e16f,
.table_stone_6bca,
.module_huge_b029 {
  flex-wrap:wrap;
}

[class*="grid"],
.image_middle_2129,
.last_6b36,
.notification_e839 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.south-296f img,
.tabs-gold-b07e img,
.hidden-0e6a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.avatar_smooth_140b, .main-paper-e622,
.dirty-8bf2, .block_2a1f {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.avatar-123b { width:100%; overflow-x:auto; }
.avatar-123b table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.item_fresh_b057 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .item_fresh_b057 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.thumbnail-8e58 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.footer-3ca7,
.block_1c10,
.last-39e8,
.upper_7616,
.hover-fresh-e277,
.image_middle_2129,
.last_6b36,
.notification_e839,
.header-full-f8ff,
.black-f265,
.item_fresh_b057 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .footer-3ca7,
  .block_1c10,
  .last-39e8,
  .upper_7616,
  .hover-fresh-e277,
  .image_middle_2129,
  .last_6b36,
  .notification_e839,
  .header-full-f8ff,
  .black-f265,
  .item_fresh_b057 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.prev-5e81,
.first-4e1e,
.menu-e511,
.thumbnail-bbd0,
.fresh_0c7a,
.text_29da,
.fixed_e0e8,
.thumbnail-8e58 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.title-light-a368,
.chip-8cd3,
.widget_a9af {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.title-light-a368 > *,
.chip-8cd3 > *,
.widget_a9af > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4467 */
.shadow-element-k5 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
