/* {$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;
}

.liquid_fda3 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.input_f406 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .input_f406 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .input_f406 {
        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 */
.layout_wide_03cc {
    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);
}

.caption-under-d666 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .caption-under-d666 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .secondary-f31a {
        grid-column: 1;
    }
    
    .surface_dynamic_dfba {
        grid-column: 2;
    }
    
    .out-f979 {
        grid-column: 3;
    }
}

.secondary-f31a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.secondary-f31a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.mini_f120 {
    display: none;
}

@media (min-width: 1024px) {
    .mini_f120 {
        display: block;
    }
}

/* Grouped Navigation */
.alert_b66a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.thumbnail-a1f1 {
    position: relative;
}

.overlay-95d6 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.thumbnail-a1f1 .over_2905 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.over_2905 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.texture-up-32a4 {
    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;
}

.texture-up-32a4:hover,
.texture-up-32a4.fn-active-550e {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.prev_698c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .prev_698c {
        display: flex;
    }
}

/* Mobile Register Button */
.surface_dynamic_dfba {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface_dynamic_dfba {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tooltip_c03c {
    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;
}

.tooltip_c03c::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 */
.out-f979 {
    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) {
    .out-f979 {
        display: none;
    }
}

.out-f979 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.out-f979.fn-active-550e span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.out-f979.fn-active-550e span:nth-child(2) {
    opacity: 0;
}

.out-f979.fn-active-550e span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.upper-a3c2 {
    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;
}

.upper-a3c2.fn-active-550e {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.dynamic-dc22 {
    overflow: hidden;
}

.article-e5ca {
    list-style: none;
    padding: 0.75rem 0;
}

.icon-motion-adf9 {
    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;
}

.icon-motion-adf9:hover,
.icon-motion-adf9.fn-active-550e {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.icon-motion-adf9.badge_9d31 {
    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;
}

.icon-motion-adf9.badge_9d31::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 */
.hover_4577 {
    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;
}

.north-b3f3 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.north-b3f3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.orange-de45 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.orange-de45:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.text_cold_13a0 {
    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;
}

.text_cold_13a0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.under-8427 {
    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;
}

.wood-c0ad {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.wood-c0ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focus-3d18 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focus-3d18:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.chip-current-c1db {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.chip-current-c1db: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);
}

.grid_fresh_c396 {
    font-size: 1em;
    font-weight: 700;
}

.carousel_hard_1054 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.smooth_099d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.smooth_099d::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-668c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .description-668c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.middle-e402 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.focused-12c3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.photo-slow-c3cf {
    margin-bottom: 2rem;
}

.column-b16a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .column-b16a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-slow-613e {
    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);
}

.yellow_5f73 {
    font-size: 1.5rem;
}

.active-8db6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.disabled-small-52ae {
    display: flex;
    justify-content: center;
    align-items: center;
}

.outline-4043 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.outline-4043:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.focus-2e5d {
    text-align: center;
    margin-bottom: 3rem;
}

.hidden_677f {
    margin-bottom: 1rem;
}

.picture-8e75 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.summary-outer-3a89 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .summary-outer-3a89 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .summary-outer-3a89.purple_02af {
        direction: rtl;
    }
    
    .summary-outer-3a89.purple_02af > * {
        direction: ltr;
    }
}

.stale_05a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.stale_05a1:first-child {
    margin-top: 0;
}

.module-mini-30c8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cool-d02a {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cool-d02a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.heading-in-2e1f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-in-2e1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-9b85 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article_large_b716 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.lower-b2e0 {
    list-style: none;
}

.lower-b2e0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower-b2e0 li:last-child {
    border-bottom: none;
}

/* Games Features */
.up_d128 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.module-e1ed {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.west-9c81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.smooth-7ebd {
    margin: 2rem 0;
}

.media_6fae {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hidden-huge-352e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.search_out_6cfa {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tall_a59e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.orange_099f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_099f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_f805 {
    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);
}

.background_f805:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.right_5ed0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.grid_orange_3b3f {
    font-size: 1.5rem;
}

.slider_bronze_f4d3 {
    color: var(--accent-color);
    margin: 0;
}

.paragraph-eb3a {
    list-style: none;
}

.paragraph-eb3a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.paragraph-eb3a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.module_simple_8f91 {
    margin: 2rem 0;
}

.dynamic-7bdc {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.title_over_9c9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .title_over_9c9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-liquid-64d9 {
    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);
}

.advanced_84ec {
    font-size: 1.25rem;
}

.content_thick_4b37 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.liquid-e104,
.popup-2ac7 {
    text-align: center;
    margin: 2rem 0;
}

.search-lite-2c23,
.hard-2237 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pagination_gas_e022 {
    margin: 2rem 0;
    text-align: center;
}

.wrapper_left_9832 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wrapper_left_9832::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;
}

.preview-4eec {
    position: relative;
    z-index: 1;
}

.media-wood-7520 {
    margin-bottom: 1rem;
}

.popup-c420 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.button-small-e432 {
    margin-bottom: 3rem;
}

.panel_motion_51d2 {
    margin-top: 3rem;
}

.huge_5a77 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .huge_5a77 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge_5a77 .icon-slow-613e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.main_3223 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini-0258 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.hovered_dbbb {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.upper_990e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .upper_990e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .upper_990e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.picture-9567 {
    margin-bottom: 1rem;
}

.outer-8350 img {
    margin-bottom: 1rem;
}

.up_7a64 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-d44e {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.detail-current-ddc6 {
    list-style: none;
}

.detail-current-ddc6 li {
    margin-bottom: 0.5rem;
}

.detail-current-ddc6 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.detail-current-ddc6 a:hover {
    color: var(--accent-color);
}

.red_549f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.yellow-23e3 {
    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);
}

.yellow-23e3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.left_9f43 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.left_9f43 p {
    margin-bottom: 0.25rem;
}

.module-hard-84de {
    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) {
    .module-hard-84de {
        flex-direction: row;
    }
}

.plasma-9ccd {
    text-align: center;
}

@media (min-width: 768px) {
    .plasma-9ccd {
        text-align: left;
    }
}

.plasma-9ccd p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.photo_tall_aaf9 {
    font-size: 0.75rem !important;
}

.search_lite_a494 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.block-20cf {
    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);
    }
}

.feature-out-a66f {
    animation: fadeInUp 0.6s ease-out;
}

.modal-5101 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.badge_wide_9974 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_wide_9974 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.border-large-e774 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-large-e774 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-98df {
    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);
}

.alert-98df .west-9c81 {
    font-size: 1.25rem;
}

.alert-98df .blue-84b8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.full-9f30 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .full-9f30 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-911a {
    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);
}

.accent-911a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_action_4a10 {
    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);
}

.form-8773 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box_white_2c06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_35a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma_451c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma_451c .feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.plasma_451c .right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-9d49 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-thick-7f0f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.grid-thick-7f0f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.grid-thick-7f0f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.copper_b89b {
    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);
}

.caption-9438 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plasma-8c24 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plasma-8c24 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.plasma-8c24 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);
}

.plasma-8c24 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.plasma-8c24 input::placeholder {
    color: var(--text-muted);
}

.action_a69b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fresh_5d89 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.fresh_5d89 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.notification_new_4f02 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.notification_new_4f02:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.title_over_9c9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_over_9c9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-liquid-64d9 {
    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);
}

.row-liquid-64d9 .advanced_84ec {
    font-size: 1.25rem;
}

.row-liquid-64d9 .content_thick_4b37 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.element_first_5402 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-1a1e {
    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);
}

.active-1a1e .west-9c81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-1a1e .feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-1a1e .right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_f940 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-1d07 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.link-1d07 .left-9467 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link-1d07 .first-25fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_hovered_c877 {
    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);
}

.steel_e4c1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .steel_e4c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-wide-b07e {
    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);
}

.module-wide-b07e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-lite-64ed {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.static-3ab9 {
    flex: 1;
}

.large_c393 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.upper-819c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover-3a8c {
    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);
}

.hover-3a8c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.south-d33c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south-d33c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_white_2a13 {
    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);
}

.panel_white_2a13:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard-e195 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-hot-b7c7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-out-a7e1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shade_up_8ced {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery_copper_38ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_dafb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-up-6e4c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.progress-up-6e4c .border_paper_0427 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-up-6e4c .complex_b2e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-smooth-808f {
    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);
}

.border-8197 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_6c91 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_6c91 .west-9c81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_6c91 .feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer_6c91 .right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro-c4b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-c4b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-south-f8fa {
    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);
}

.block-south-f8fa:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.photo-8483 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-8483 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_acb2 {
    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);
}

.secondary_acb2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_dd44 {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_clean_6017 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hidden-huge-352e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.left-e863 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.form_wide_806c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple_31bb {
    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);
}

.purple_31bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_89ab {
    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);
}

.shade_54a0 {
    flex: 1;
}

.detail_d9e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.lower-3c15 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.alert_first_7f3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-eeea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-top-4eb5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-top-4eb5 .left-9467 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-top-4eb5 .first-25fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-2ac7 {
    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);
}

.thumbnail-9326 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-9326 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.element-basic-dd30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-basic-dd30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_6c7d {
    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);
}

.surface_6c7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_liquid_728d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_hovered_d7c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-d9a7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.message_silver_42c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip-up-a23e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_096a {
    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);
}

.search_liquid_750e {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_north_426a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_1d79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border-8197 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_6c91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer_6c91 .feature_1007 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer_6c91 .right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_easy_e08c {
    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);
}

.feature-soft-7a94 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature-soft-7a94 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-soft-7a94 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-active-ea80 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shadow-active-ea80:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_5796 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.steel-5bba {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.under-89dd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.text-stale-bf56 {
    padding: 1.5rem;
}

.layout_2139 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-4359 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-4359 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;
}

.panel-4359 li:last-child {
    border-bottom: none;
}

.panel-4359 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.card-huge-ed14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-huge-ed14 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-8861 {
    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);
}

.wrapper-8861:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-a545 {
    font-size: 2rem;
    flex-shrink: 0;
}

.short_b5ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inner-a27d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dark_731b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.first_f8d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_4a9a {
    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);
}

.form_hard_8b8c {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_0636 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-north-995a {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-cool-c626 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_up_999a {
    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);
}

.lite_8908 {
    text-align: center;
}

.first_c972 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy_7203 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tertiary_under_a43c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-d778 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-d778 .feature_1007 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.new-d778 .right-677b {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-0556 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last-0556 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last-0556 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-39ff {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.media-39ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-8495 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_copper_bbc2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_1007 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bronze_b4cf {
    padding: 1.5rem;
}

.right-677b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-east-ff49 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-east-ff49 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;
}

.gradient-east-ff49 li:last-child {
    border-bottom: none;
}

.gradient-east-ff49 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.focus-4e2b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.focus-rough-8499 {
    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);
}

.focus-rough-8499:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_7029 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static-c862 {
    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);
}

.card_action_4a10 {
    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;
}

.form-8773 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box_white_2c06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-blue-970f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_soft_2358 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-eaa9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-warm-b10c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-f288 {
    display: flex;
    gap: 1rem;
}

.form-f288 .out_4d09 {
    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;
}

.table_next_57af {
    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);
}

.gallery-yellow-f22e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focused_e100 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused_e100 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;
}

.focused_e100 li:last-child {
    border-bottom: none;
}

.focused_e100 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.notice-e2fd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-e2fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-e2fd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-top-4dd9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hover-top-4dd9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_209b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pro_36f1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.border_paper_0427 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dark_e8f5 {
    font-size: 1rem;
}

.left-4e2c {
    padding: 1.5rem;
}

.complex_b2e9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.copper-d3d3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.copper-d3d3 .lite_8908 {
    text-align: center;
}

.copper-d3d3 .easy_7203 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.copper-d3d3 .layout-fixed-4aff {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wide_28d3 {
    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);
}

.wide_28d3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.grid-small-ed40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-small-ed40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-205d {
    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-205d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title_e8c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-under-927f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.widget-8183 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-focused-c808 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text_left_9064 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-8a79 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.title-advanced-e6dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label-blue-5524 {
    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);
}

.texture_cb6e {
    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;
}

.texture_cb6e.slider-smooth-a734 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.texture_cb6e.menu_tall_c27a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.texture_cb6e.hover-smooth-6459 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.texture_cb6e.copper-37cb {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.texture_cb6e.liquid_17ed {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.component-f146 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slow-502e {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav-old-955e {
    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);
}

.status_c07e {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus_f940 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_f940 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;
}

.focus_f940 li:last-child {
    border-bottom: none;
}

.focus_f940 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.panel-liquid-fbc0 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel-liquid-fbc0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel-liquid-fbc0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-1a14 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero-1a14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-1a14.mask-127e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .hero-1a14.mask-127e {
        grid-column: span 3;
    }
}

.stale_74c4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.hero-1a14.mask-127e .stale_74c4 {
    background: rgba(6, 182, 212, 0.1);
}

.pressed_5ceb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mini_7db2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.hero-1a14.mask-127e .mini_7db2 {
    color: var(--info-color);
}

.next_53cc {
    padding: 1.5rem;
    text-align: center;
}

.smooth-1103 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hero-1a14.mask-127e .smooth-1103 {
    color: var(--info-color);
}

.widget_paper_c0b5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-4889 {
    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 */
.grid_silver_48fe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_silver_48fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-5e1c {
    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);
}

.accordion-5e1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer-464c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-1a1e {
    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);
}

.advanced_84ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-glass-4249 {
    flex: 1;
}

.dynamic-7bdc {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_c91c {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_5565 {
    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);
}

.wrapper_4f26 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.element_3659 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.block-20cf {
    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);
}

.border-04f1 {
  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);
}

.border-04f1 .lite_8908 {
    text-align: center;
}

.border-04f1 .first_c972 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.border-04f1 .easy_7203 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hot-14e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel_76c8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-38a3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-20c5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right_5c06 {
    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);
}

.tertiary_d0c1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-8b24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-purple-f367 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .overlay-purple-f367 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay-purple-f367 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_3977 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_3977:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-30d8 {
    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);
}

.avatar_8e14 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-iron-db11 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.highlight-a90b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-a90b.outline-d3b1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.highlight-a90b.bottom_fb61 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.highlight-a90b.logo_2509 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.bronze_878a {
    padding: 1.5rem;
    text-align: center;
}

.out-abd3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_inner_3f25 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge_inner_3f25 .caption_bbda {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tabs_upper_cfef {
    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);
}

.tabs_upper_cfef:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-last-8c1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.tertiary_yellow_4623 {
    text-align: center;
}

.tertiary_yellow_4623 .first_c972 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.tertiary_yellow_4623 .easy_7203 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.panel-solid-91d9 { text-align: center; }
.active_c9d1 { text-align: left; }
.avatar-8d13 { text-align: right; }

.red_9bdb { margin-bottom: 0; }
.surface_black_f78f { margin-bottom: 0.5rem; }
.medium-c319 { margin-bottom: 1rem; }
.caption_362a { margin-bottom: 1.5rem; }
.soft-a632 { margin-bottom: 2rem; }

.frame-silver-b6de { margin-top: 0; }
.block-top-eb74 { margin-top: 0.5rem; }
.grid_basic_4d5e { margin-top: 1rem; }
.current_820c { margin-top: 1.5rem; }
.modal-fda6 { margin-top: 2rem; }

.fn-hidden-550e { display: none; }
.fn-visible-550e { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .smooth_099d {
        padding: 6rem 0 3rem;
    }
    
    .description-668c {
        text-align: center;
    }
    
    .summary-outer-3a89 {
        text-align: center;
    }
    
    .column-b16a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .layout_wide_03cc,
    .upper-a3c2,
    .wrapper_left_9832,
    .hovered_dbbb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .smooth_099d {
        background: none;
    }
}

/* Providers Section */
.stale_a762 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-7780 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-7780 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-7780 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast_f8f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fast_f8f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar-inner-08b6 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.block_bf74 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.simple-b66c {
    list-style: none;
    padding: 0;
}

.simple-b66c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.simple-b66c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wood_7e65 {
    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);
}

.wood_7e65 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.outline-green-359e {
    padding: var(--section-padding);
}

.panel-021a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-021a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_fluid_d200 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_fluid_d200:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.surface-hovered-de8e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.progress-short-0b77 {
    display: flex;
    flex-direction: column;
}

.sidebar-motion-e266 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo_149b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status_tiny_df84 {
    color: var(--accent-color);
}

.widget_huge_bf22 {
    font-size: 1.25rem;
}

.component_34b0 {
    margin-bottom: 1rem;
}

.component_34b0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.text-e213 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.container-e0a9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.lite_8908 {
    text-align: center;
}

.first_c972 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy_7203 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.block-40f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-4732 {
    margin: 2rem 0;
}

.background_left_2fa2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.background_left_2fa2 .west-9c81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph-6346 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight_40ce {
    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;
}

.highlight_40ce:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip-387a {
    font-size: 2rem;
}

.clean_5720 {
    display: flex;
    flex-direction: column;
}

.shadow_5c49 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pagination_be11 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.card-outer-5ebc {
    padding: var(--section-padding);
}

.breadcrumb-next-8858 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb-next-8858 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb-next-8858 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_adad {
    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);
}

.wide_adad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wide_adad .first_c972 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.wide_adad .easy_7203 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.wide_adad .old-f9fb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.gradient-c326 {
    margin-top: 4rem;
}

.tertiary-north-c927 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tiny-290e {
    overflow-x: auto;
}

.block_03b5 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.block_03b5 thead {
    background: var(--accent-color);
}

.block_03b5 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.block_03b5 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.block_03b5 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.block_03b5 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.tall-7b9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-upper-7d75 {
    max-width: 900px;
    margin: 0 auto;
}

.component_old_c279 {
    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);
}

.component_old_c279:hover {
    border-color: var(--accent-color);
}

.photo_cold_818c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.photo_cold_818c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.brown-89ae {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.component_old_c279.fn-active-550e .brown-89ae {
    transform: rotate(45deg);
}

.pattern_5808 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.component_old_c279.fn-active-550e .pattern_5808 {
    max-height: 1000px;
}

.pattern_5808 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.table-in-8bd4 {
    padding: var(--section-padding);
}

.grid-thick-7f0f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.lite_906c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide-7afc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide-7afc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout-73d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-paper-4ea6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.complex_5a74 {
    font-size: 2rem;
}

.medium-a0ae {
    color: var(--text-white);
    margin: 0;
}

.label_66ea {
    list-style: none;
    padding: 0;
}

.label_66ea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_66ea li:last-child {
    border-bottom: none;
}

.content_slow_13e2 {
    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);
}

.content_slow_13e2 p {
    color: var(--success-color);
    margin: 0;
}

.hard-9943 {
    margin-top: 3rem;
}

.gallery-yellow-f22e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tall_7473 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tall_7473 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold-2169 {
    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);
}

.mini_dfc0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cold-2169 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.status_next_4046 {
    padding: var(--section-padding);
}

.section-0c59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-0c59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-8807 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.primary-8807:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.first-90c2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-out-0a9a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.backdrop-down-eaba {
    flex: 1;
}

.shade-fresh-c9fc {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pattern-e77f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.button-static-2394 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-tall-dce1 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.surface-tall-dce1:last-child {
    border-bottom: none;
}

/* Comparison Section */
.section-7902 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.bright_25e5 {
    padding: var(--section-padding);
}

.smooth_0a24 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.wrapper_cold_e25e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_cold_e25e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-a7ae {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-ce30, .box-a8f8, .secondary_ad20 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.secondary_ad20 {
    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 */
.container_basic_9fc0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_red_6090 {
    margin: 2rem 0;
}

.hover_hot_4bc5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_4c70 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dynamic_7706 {
    list-style: none;
    padding: 0;
}

.dynamic_7706 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;
}

.dynamic_7706 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dynamic_7706 li:last-child {
    border-bottom: none;
}

.accordion_white_7d6b {
    text-align: center;
    margin-top: 2rem;
}

.left_bcc3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tiny_f113 {
    padding: var(--section-padding);
}

.menu_dynamic_de50 {
    margin: 2rem 0;
}

.photo_new_74fc {
    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) {
    .photo_new_74fc {
        flex-direction: column;
        align-items: flex-start;
    }
}

.photo_new_74fc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail-a346 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.media_c286 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.narrow_d831 {
    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;
}

.dirty_8c51 {
    flex: 1;
}

.photo_958b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hot_3255 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.paragraph-fast-1fe8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.badge-wood-a8d9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .badge-wood-a8d9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.input_f7d3 {
    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);
}

.input_f7d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_f7d3 .first_c972 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_f7d3 .easy_7203 {
    color: var(--text-gray);
    font-size: 1rem;
}

.motion-c88b {
    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);
}

.link-hot-0ae8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-hot-0ae8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.nav-30a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .nav-30a7 {
        grid-template-columns: 1fr 1fr;
    }
}

.component-medium-3fc6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean_7ed1 {
    margin-bottom: 1.5rem;
}

.clean_7ed1 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.clean_7ed1 input,
.clean_7ed1 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;
}

.clean_7ed1 input:focus,
.clean_7ed1 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel-blue-15d3 {
    width: 100%;
    margin-top: 1rem;
}

.prev-7bfc {
    display: flex;
    align-items: center;
}

.north-041f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.item-fc2b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.footer_middle_c190 {
    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;
}

.hover_mini_f9ef {
    color: var(--text-gray);
}

.hidden-blue-fcd5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.modal_03ce {
    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);
}

.modal_03ce p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.icon_3b44 {
    margin-top: 3rem;
}

.dim_d189 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hover_9e0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-19f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.grid_large_eb0f {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid_large_eb0f:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.mask_bottom_e550 {
    padding: var(--section-padding);
}

.logo-right-30d0 {
    margin: 2rem 0;
}

.right_9b4c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.liquid_c7b6 {
    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;
}

.liquid_c7b6:hover, .liquid_c7b6.fn-active-550e {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.slider_627c {
    display: none;
}

.slider_627c.fn-active-550e {
    display: block;
}

.purple-7708 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-2fad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thick_4783 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.thick_4783 ul {
    list-style: none;
    padding: 0;
}

.thick_4783 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.thick_4783 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gas_0729 {
    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 */
.tooltip_b30d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_0092 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-full-666d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.button_north_8629 {
    color: var(--accent-color);
    margin: 0;
}

.easy-8472 {
    display: flex;
    gap: 1.5rem;
}

.card-right-9d51 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notice_purple_bdd0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.simple-775f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple-775f.icon-81f3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.simple-775f.glass-2cf5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.simple-775f.gradient_c604 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.list_8fca {
    margin-top: 2rem;
}

.main-dee3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.preview_stone_9fc8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .preview_stone_9fc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-huge-6e59 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.info_3a10 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.icon-c808 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.out_1006 {
    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 */
.smooth-2ec2 {
    padding: var(--section-padding);
}

.brown-dcb4 {
    margin: 2rem 0;
}

.avatar_e619 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.info-pro-f22a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.chip-next-3ca3 {
    list-style: none;
    padding: 0;
}

.chip-next-3ca3 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;
}

.chip-next-3ca3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.chip-next-3ca3 li:last-child {
    border-bottom: none;
}

.menu_9a21 {
    margin: 2rem 0;
}

.table-af8f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mini_a141 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mini_a141 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tall-6e0e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-71d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-12ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent-4cf8 {
    margin-top: 2rem;
}

.large_c393 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thumbnail_e1e9 {
    list-style: none;
    padding: 0;
}

.heading-65fc {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.heading-65fc a {
    color: var(--accent-color);
    text-decoration: none;
}

.heading-65fc a:hover {
    text-decoration: underline;
}

.label_801b {
    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 */
.fixed_8089 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-2787 {
    margin: 2rem 0;
}

.hot-a111 {
    margin-bottom: 3rem;
}

.hot-a111 .backdrop_4c70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sort_thick_88a9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar-outer-0ad6 {
    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);
}

.sidebar-outer-0ad6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.module-e5ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .module-e5ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_huge_08ba {
    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 */
.heading-4d65 {
    padding: var(--section-padding);
}

.popup-first-a05e {
    margin: 2rem 0;
}

.image_hovered_0807 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video-8187 {
    overflow-x: auto;
    margin: 2rem 0;
}

.plasma-4766 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.warm-ea67 {
    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;
}

.fresh_7c09 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.inner_ec54 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .inner_ec54 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-e4df {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black-e4df .west-9c81 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.black-e4df .feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.light-e62f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.grid_8b5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-huge-fa8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-huge-fa8d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-cb16 {
    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;
}

.short-cb16:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.notification_a01e {
    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);
}

.photo-outer-5e6f {
    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;
}

.frame_20cb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current-68ca {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.paragraph-middle-0f40 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.slider-mini-0a4d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hot-b391 {
    color: var(--text-white);
    font-weight: 600;
}

.surface-e427 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.upper_9214 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.upper_9214 .out_4d09 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.nav-8e17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .nav-8e17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_bright_2b9f {
    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);
}

.element_bright_2b9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element_bright_2b9f .first_c972 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_bright_2b9f .easy_7203 {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph-5cc3 {
    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);
}

.white-799c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.white-799c strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.chip-up-a23e {
    margin: 2rem 0;
}

.mask_096a {
    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);
}

.mask_096a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.search_liquid_750e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.medium-b82d {
    flex: 1;
}

.alert_north_426a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_1d79 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.border-8197 {
    margin: 2rem 0;
}

.footer_6c91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_6c91 .feature_1007 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.footer_6c91 .right-677b {
    color: var(--text-gray);
    margin: 0;
}

.carousel_easy_e08c {
    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);
}

.carousel_easy_e08c .search-lite-2c23 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.light-e62f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.column_89ab {
    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;
}

.shade_54a0 {
    flex: 1;
}

.lower-3c15 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.alert_first_7f3d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.card_action_4a10 {
    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;
}

.pattern-brown-6ee9 {
    flex: 1;
}

.form-8773 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.box_white_2c06 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.active-eaa9 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.row-warm-b10c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.form-f288 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-f288 .out_4d09 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.table_next_57af {
    margin-top: 2rem;
}

.table_next_57af .gallery-yellow-f22e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.easy_1c80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_up_999a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_up_999a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_up_999a .lite_8908 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_under_a43c {
    margin: 2rem 0;
}

.new-d778 {
    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 */
.gallery_old_f63a {
    padding: var(--section-padding);
}

.bronze_b4cf {
    margin-top: 1rem;
}

.gradient-east-ff49 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.gradient-east-ff49 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gradient-east-ff49 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.rough_12fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy-c0cb {
    margin: 2rem 0;
}

.aside_373b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.sort_9ee4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.right_dfec {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.focused-50ce {
    margin: 2rem 0;
}

.smooth-1bf2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.smooth-1bf2 .backdrop_4c70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_1843 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .plasma_1843 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container_south_7888 {
    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);
}

.icon_warm_57aa {
    color: var(--text-white);
    font-weight: 600;
}

.gradient_de57 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.item-de7a {
    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);
}

.item-de7a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.sort-down-495f {
    padding: var(--section-padding);
}

.aside-prev-aa95 {
    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;
}

.aside-prev-aa95:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.basic-71cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.basic-71cd .mini_dfc0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic-71cd .tooltip_north_f464 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.avatar-e467 {
    flex: 1;
}

.popup-bf85 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video_glass_400e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_glass_400e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video_glass_400e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.article-pressed-7133 {
    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);
}

.article-pressed-7133 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-pressed-7133 strong {
    color: var(--warning-color);
}

/* Slots Section */
.grid_8f1a {
    padding: var(--section-padding);
}

.gallery_copper_38ea {
    margin: 2rem 0;
}

/* Table Games Section */
.shade_dim_1109 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_dafb {
    margin: 2rem 0;
}

.progress-up-6e4c {
    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);
}

.progress-up-6e4c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.progress-up-6e4c .border_paper_0427 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-up-6e4c .complex_b2e9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.info-smooth-808f {
    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);
}

.info-smooth-808f .search-lite-2c23 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.label_tall_9e05 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper_c97c {
    margin: 2rem 0;
}

.purple_827b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-7fd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link_large_036f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-5b12 {
    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);
}

.last-5b12:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.last-5b12.fn-active-550e {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_8cbc {
    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);
}

.element_a7bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element_a7bf strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.column_3bc0 {
    padding: var(--section-padding);
}

.menu_c25c {
    margin: 2rem 0;
}

.liquid_4b60 {
    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);
}

.liquid_4b60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .liquid_4b60 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pattern-old-939e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.chip_8852 {
    flex: 1;
}

.notice-7436 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-ff21 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.wrapper-8213 {
    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;
}

.brown-8b52 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disabled-fba3 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.item-770f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mini-64b3 {
    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;
}

.mini-64b3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shadow_c5d5 {
    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);
}

.title-27b3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title-27b3 strong {
    color: var(--accent-color);
}

/* New Games Section */
.container-cf96 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-c4eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask-c4eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask-c4eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-4551 {
    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;
}

.sidebar-4551:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media-up-cee7 {
    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;
}

.overlay_1baa {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.button_8d20 {
    font-size: 2rem;
}

.accent_8344 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.icon_fdb6 {
    flex: 1;
}

.gallery-steel-727b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.glass-7554 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.media_glass_f706 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-copper-9acd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.steel_241d {
    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;
}

.heading_81a8 {
    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;
}

.heading_81a8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fluid-8c5c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-a9c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.border-smooth-8f94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .border-smooth-8f94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_ae35 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-7b28 {
    color: var(--text-white);
    font-weight: 600;
}

.accent_middle_7000 {
    color: var(--accent-color);
    font-weight: 600;
}

.main-bronze-0020 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.main-bronze-0020 strong {
    color: var(--accent-color);
}

/* Security Section */
.popup_f9fe {
    padding: var(--section-padding);
}

/* Benefits Section */
.widget_9116 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.steel-f268 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.footer_wood_daba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_cacc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.frame_a074 {
    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) {
    .frame_a074 {
        flex-direction: column;
        gap: 1rem;
    }
}

.frame_a074:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.frame_a074 .card_action_4a10 {
    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;
}

.frame_a074 .pattern-brown-6ee9 {
    flex: 1;
}

.frame_a074 .form-8773 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.frame_a074 .box_white_2c06 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.paragraph-gold-3877 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-gold-3877 .dynamic-7bdc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-gold-3877 .element_first_5402 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph-gold-3877 .element_first_5402 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph-gold-3877 .element_first_5402 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.description-over-580c {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dynamic-8c78 {
    padding: var(--section-padding);
}

.gradient-purple-c32f {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gradient-purple-c32f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_11db {
    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);
}

.element_11db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.element_11db .overlay_98d4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_11db .green-ecd6 {
    flex: 1;
}

.element_11db .left-9467 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element_11db .video_baf3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status_slow_ea57 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_slow_ea57 .new-54bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status_slow_ea57 .paper_d075 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.status_slow_ea57 .paper_d075 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);
}

.status_slow_ea57 .paper_d075 li:last-child {
    border-bottom: none;
}

.status_slow_ea57 .paper_d075 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;
}

.status_slow_ea57 .paper_d075 li strong {
    color: var(--text-white);
}

.breadcrumb_white_c577 {
    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);
}

.breadcrumb_white_c577 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb_white_c577 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.progress_right_71e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_b28a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .white_b28a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last-8b76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last-8b76:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.logo-over-3000 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic-58f3 {
    font-size: 2rem;
}

.wrapper_copper_f101 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.wrapper-1dd8 {
    flex: 1;
}

.header_smooth_c6b4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_smooth_c6b4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header_smooth_c6b4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.header-inner-e45f {
    margin-top: 3rem;
}

.avatar_e619 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.info-pro-f22a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.chip-next-3ca3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-next-3ca3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.chip-next-3ca3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.chip-next-3ca3 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.active-8e40 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_active_9009 {
    margin: 2rem 0;
}

.slow_15af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slow_15af .backdrop_4c70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.iron_f5ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .iron_f5ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pink_af04 {
    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);
}

.pink_af04:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.badge-large-ff9f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-bronze-cf1d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.purple_fc1c {
    padding: var(--section-padding);
}

.primary-out-6049 {
    margin: 2rem 0;
}

.highlight_05b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .highlight_05b2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_05b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_steel_bbf9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_steel_bbf9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wrapper_motion_aadf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-new-995c {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.prev-2536 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.prev-2536.chip_lite_f4e4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.disabled_6779 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.media-f805 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.container-ee50 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module_09e7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal_hovered_5f91 {
    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);
}

.modal_hovered_5f91 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_hovered_5f91 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.sidebar-old-d0e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid-b296 {
    margin: 2rem 0;
}

.secondary_6eee {
    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) {
    .secondary_6eee {
        flex-direction: column;
        gap: 1rem;
    }
}

.secondary_6eee:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary_6eee::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);
}

.south-fa8d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.in_2041 {
    flex: 1;
}

.lower_0cec {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.top_ede6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top_ede6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_4c1b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-left-71d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video-d1ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .video-d1ac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_e982 {
    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);
}

.steel_483a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thick_d5c1 {
    flex: 1;
}

.progress-1fde {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.list-3a86 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.column_7576 {
    margin-top: 2rem;
    text-align: center;
}

.wrapper_bfd5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper_bfd5 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.grid-small-ed40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-small-ed40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-205d {
    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);
}

.border-205d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.border-205d .heading-a545 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-205d .short_b5ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.border-205d .inner-a27d {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.border-205d .dark_731b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.sidebar-f30a {
    padding: var(--section-padding);
}

.slider-under-927f .banner_pro_dc76 {
    flex: 1;
}

/* Promo Calendar Section */
.west-fb39 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-cd22 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-cd22 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_eaf6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_bbbe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outer_8add {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-iron-d3b0 {
    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);
}

.hidden_a3e1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.summary-926f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.last_7ee8 {
    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);
}

.last_7ee8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last_7ee8 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.up-b426 {
    padding: var(--section-padding);
}

.pagination_8fc7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_8fc7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rough_2db8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_east_9c0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.carousel_west_3fc8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel_west_3fc8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item-pink-a9cb {
    margin-top: 3rem;
}

.item-pink-a9cb .avatar_e619 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.item-pink-a9cb .info-pro-f22a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-pink-a9cb .chip-next-3ca3 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.item-pink-a9cb .chip-next-3ca3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.item-pink-a9cb .chip-next-3ca3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.item-pink-a9cb .chip-next-3ca3 li strong {
    color: var(--warning-color);
}

.pro-e129 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pro-e129 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.filter_in_cc2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_7cb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_7cb9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic_b326 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic_b326 .backdrop_4c70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline_a4b2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal_0376 {
    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);
}

.modal_0376:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar_43e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_upper_87f6 {
    flex: 1;
}

.dynamic_16fb {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.column_wide_1e6e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.aside-over-20e2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sort-fecf {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.avatar-outer-ee28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .avatar-outer-ee28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_cc37 {
    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);
}

.overlay_cc37:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.new-4bb4 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pattern-fixed-bc05 {
    color: var(--text-gray);
    font-size: 1rem;
}

.link-hot-0ae8 {
    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);
}

.breadcrumb_over_3297 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.breadcrumb_over_3297 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.input_f406 { 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; }
.outline-4043, .cool-d02a { max-width:100%; height:auto; }

.hover_4577, .text_cold_13a0, .under-8427 { white-space:normal; }

.description-668c,
.summary-outer-3a89,
.grid_silver_48fe,
.grid-small-ed40,
.border-8197,
.overlay-purple-f367 {
  flex-wrap:wrap;
}

[class*="grid"],
.avatar-outer-ee28,
.highlight_05b2,
.huge_5a77 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.smooth_099d img,
.summary-outer-3a89 img,
.disabled-small-52ae img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.middle-e402, .focused-12c3,
.hidden_677f, .picture-8e75 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tiny-290e { width:100%; overflow-x:auto; }
.tiny-290e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.search-7780 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .search-7780 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fast_f8f0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.breadcrumb-next-8858,
.border_1b0b,
.info_west_0b02,
.short-3c17,
.badge-wood-a8d9,
.avatar-outer-ee28,
.highlight_05b2,
.huge_5a77,
.feature-last-8c1e,
.menu_c25c,
.search-7780 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .breadcrumb-next-8858,
  .border_1b0b,
  .info_west_0b02,
  .short-3c17,
  .badge-wood-a8d9,
  .avatar-outer-ee28,
  .highlight_05b2,
  .huge_5a77,
  .feature-last-8c1e,
  .menu_c25c,
  .search-7780 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.wide_adad,
.input_f7d3,
.overlay_cc37,
.icon-slow-613e,
.menu_steel_bbf9,
.tertiary_yellow_4623,
.liquid_4b60,
.fast_f8f0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.shade_active_92ab,
.current-7d4a,
.avatar-fluid-efa3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.shade_active_92ab > *,
.current-7d4a > *,
.avatar-fluid-efa3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4b51 */
.promo-block-i9 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
