/* {$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;
}

.narrow_cad5 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.button_fc60 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .button_fc60 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .button_fc60 {
        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 */
.element_9d83 {
    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);
}

.shadow_359e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .shadow_359e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .input_yellow_fe06 {
        grid-column: 1;
    }
    
    .surface_wide_efc3 {
        grid-column: 2;
    }
    
    .wrapper-84ab {
        grid-column: 3;
    }
}

.input_yellow_fe06 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.input_yellow_fe06:hover img {
    transform: scale(1.05);
}

/* Navigation */
.breadcrumb_4000 {
    display: none;
}

@media (min-width: 1024px) {
    .breadcrumb_4000 {
        display: block;
    }
}

/* Grouped Navigation */
.middle-3894 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.fixed_e06f {
    position: relative;
}

.soft_88b9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.fixed_e06f .icon_f815 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.icon_f815 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.secondary-34fc {
    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;
}

.secondary-34fc:hover,
.secondary-34fc.fn-active-1774 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.widget_small_ff67 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .widget_small_ff67 {
        display: flex;
    }
}

/* Mobile Register Button */
.surface_wide_efc3 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface_wide_efc3 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.button-a401 {
    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;
}

.button-a401::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 */
.wrapper-84ab {
    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) {
    .wrapper-84ab {
        display: none;
    }
}

.wrapper-84ab span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.wrapper-84ab.fn-active-1774 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.wrapper-84ab.fn-active-1774 span:nth-child(2) {
    opacity: 0;
}

.wrapper-84ab.fn-active-1774 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.component-fast-1ed2 {
    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;
}

.component-fast-1ed2.fn-active-1774 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.title_af54 {
    overflow: hidden;
}

.white-f3d2 {
    list-style: none;
    padding: 0.75rem 0;
}

.pink_652e {
    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;
}

.pink_652e:hover,
.pink_652e.fn-active-1774 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.pink_652e.detail_last_bd0f {
    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;
}

.pink_652e.detail_last_bd0f::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 */
.solid_ed3c {
    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;
}

.iron_0796 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.iron_0796:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.dim_024f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.dim_024f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dim-dd23 {
    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;
}

.dim-dd23:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gold-7922 {
    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;
}

.title-motion-bd51 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.title-motion-bd51:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.input_outer_0e05 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.input_outer_0e05:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.green-1616 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.green-1616: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);
}

.easy-7e10 {
    font-size: 1em;
    font-weight: 700;
}

.glass_db14 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.huge_3ba5 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.huge_3ba5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.widget-e861 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .widget-e861 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hard-c85f {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.white-0322 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.east_8da3 {
    margin-bottom: 2rem;
}

.list_cold_2143 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .list_cold_2143 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-ad36 {
    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);
}

.pressed_cb86 {
    font-size: 1.5rem;
}

.picture_thick_4983 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.primary_3bcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input_in_8394 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.input_in_8394:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.status_stone_2b7b {
    text-align: center;
    margin-bottom: 3rem;
}

.top-5ffe {
    margin-bottom: 1rem;
}

.breadcrumb-84be {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.badge_f353 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .badge_f353 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .badge_f353.pattern-5ced {
        direction: rtl;
    }
    
    .badge_f353.pattern-5ced > * {
        direction: ltr;
    }
}

.accordion-99e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.accordion-99e2:first-child {
    margin-top: 0;
}

.tall_3af2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slider_34ad {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider_34ad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.white-588a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white-588a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_dynamic_350a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_first_ca7e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.image-center-690f {
    list-style: none;
}

.image-center-690f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-center-690f li:last-child {
    border-bottom: none;
}

/* Games Features */
.copper_de8f {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.article_cool_45d2 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tooltip-lite-e266 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.active_2d4a {
    margin: 2rem 0;
}

.paper-9a40 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.pagination-2474 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.orange_987e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.article_solid_bcfe {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.widget_motion_6836 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_motion_6836 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_paper_d374 {
    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);
}

.active_paper_d374:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading-silver-db27 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form_hovered_6d59 {
    font-size: 1.5rem;
}

.box-8f84 {
    color: var(--accent-color);
    margin: 0;
}

.wrapper-4298 {
    list-style: none;
}

.wrapper-4298 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.wrapper-4298 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.popup_hot_9386 {
    margin: 2rem 0;
}

.message-pink-e359 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.slider-right-8a67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .slider-right-8a67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-gas-259f {
    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);
}

.gradient-01f3 {
    font-size: 1.25rem;
}

.chip-0b1c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.disabled_00a6,
.pattern-dcde {
    text-align: center;
    margin: 2rem 0;
}

.detail-hard-44f9,
.first-2cc0 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.paragraph_f384 {
    margin: 2rem 0;
    text-align: center;
}

.detail-tiny-0582 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-tiny-0582::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;
}

.progress_668a {
    position: relative;
    z-index: 1;
}

.surface-stone-ee71 {
    margin-bottom: 1rem;
}

.pink_19d9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.frame_south_7bfe {
    margin-bottom: 3rem;
}

.item_91bf {
    margin-top: 3rem;
}

.background-f851 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .background-f851 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-f851 .white-ad36 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort-basic-4244 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-e93e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.disabled-dynamic-cd63 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.block_pro_752e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .block_pro_752e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_pro_752e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.link_focused_cb51 {
    margin-bottom: 1rem;
}

.active_3098 img {
    margin-bottom: 1rem;
}

.panel-thick-f59d {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_60e8 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.active_49d1 {
    list-style: none;
}

.active_49d1 li {
    margin-bottom: 0.5rem;
}

.active_49d1 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.active_49d1 a:hover {
    color: var(--accent-color);
}

.mask_bronze_0085 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pressed_0d01 {
    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);
}

.pressed_0d01:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tiny_8861 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tiny_8861 p {
    margin-bottom: 0.25rem;
}

.filter_2e72 {
    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) {
    .filter_2e72 {
        flex-direction: row;
    }
}

.panel-pink-1ef7 {
    text-align: center;
}

@media (min-width: 768px) {
    .panel-pink-1ef7 {
        text-align: left;
    }
}

.panel-pink-1ef7 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block_glass_52cc {
    font-size: 0.75rem !important;
}

.image-5140 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.input_narrow_191f {
    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);
    }
}

.main_hot_fad1 {
    animation: fadeInUp 0.6s ease-out;
}

.media-0ffb {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.content-active-dc49 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-active-dc49 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.green_a885 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_a885 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-19db {
    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);
}

.detail-19db .tooltip-lite-e266 {
    font-size: 1.25rem;
}

.detail-19db .top-e0c2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.shade-hot-c09d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade-hot-c09d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-1a53 {
    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);
}

.dropdown-1a53:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-copper-d1ff {
    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);
}

.sort-57e5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-49db {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_black_011d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_0eb3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_0eb3 .search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_0eb3 .button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_b56c {
    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);
}

.silver_64c3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.silver_64c3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.silver_64c3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.info_fdfd {
    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);
}

.wrapper_complex_4132 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tag_d30c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag_d30c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tag_d30c 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);
}

.tag_d30c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tag_d30c input::placeholder {
    color: var(--text-muted);
}

.element-64df {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-728b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.secondary-728b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.grid_stone_87b7 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.grid_stone_87b7:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.slider-right-8a67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-right-8a67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-gas-259f {
    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);
}

.thumbnail-gas-259f .gradient-01f3 {
    font-size: 1.25rem;
}

.thumbnail-gas-259f .chip-0b1c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.main_over_81c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-faba {
    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-faba .tooltip-lite-e266 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-faba .search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-faba .button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-1acf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_gold_5d59 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_gold_5d59 .pink-bc76 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_gold_5d59 .layout-98c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-west-f596 {
    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);
}

.list-580f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .list-580f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_20d0 {
    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);
}

.copper_20d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-south-f2e1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-middle-a8fd {
    flex: 1;
}

.last_1083 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-down-8222 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status_smooth_de24 {
    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);
}

.status_smooth_de24:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hot-c239 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot-c239 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_cold_a11c {
    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);
}

.heading_cold_a11c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-88ed {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-plasma-3515 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item_6cc5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.selected_a066 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fresh_6299 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_4cd6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-583c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wood-583c .feature_advanced_b4b2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood-583c .center_bcb6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_dim_a8ed {
    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);
}

.south_951f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.blue-9717 {
    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);
}

.blue-9717 .tooltip-lite-e266 {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue-9717 .search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-9717 .button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-glass-14cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-glass-14cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-pro-9132 {
    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);
}

.element-pro-9132:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.dropdown_first_a970 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_first_a970 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_85e4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_85e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-2e93 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid_b331 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pagination-2474 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.table-df38 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.highlight_d0d7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-7598 {
    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);
}

.notice-7598:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-25c6 {
    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-large-e265 {
    flex: 1;
}

.active_e392 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.glass-1964 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.outer_84be {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_ce01 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-e052 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-e052 .pink-bc76 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout-e052 .layout-98c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-dcde {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-ccad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-ccad {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.white_09c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white_09c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-current-1055 {
    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);
}

.accent-current-1055:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north_a1b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-973c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.grid-7397 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside-upper-73b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.preview_2c97 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced_26cf {
    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);
}

.aside_b646 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_blue_dd0f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_next_989d {
    color: var(--text-gray);
    line-height: 1.6;
}

.south_951f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.blue-9717 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.blue-9717 .search_7c4f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blue-9717 .button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-58df {
    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);
}

.widget_middle_a18b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget_middle_a18b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget_middle_a18b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-b959 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gold-b959:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-3f14 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hard-af05 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outer_b770 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.status-bright-c074 {
    padding: 1.5rem;
}

.icon_smooth_6c9a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-ed15 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-ed15 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.card-ed15 li:last-child {
    border-bottom: none;
}

.card-ed15 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.hover-new-c9c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-new-c9c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_dark_219b {
    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);
}

.button_dark_219b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-4c95 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-5f33 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.image-large-7728 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.table-fb99 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.simple_280c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_584d {
    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);
}

.orange_7fe2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-wood-095f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_bottom_5b88 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-d470 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu_advanced_f537 {
    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);
}

.upper_0aae {
    text-align: center;
}

.narrow-a3e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification_54c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_5859 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_5859 .search_7c4f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination_5859 .button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium-8e15 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .medium-8e15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium-8e15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-e932 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs-e932:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-narrow-1451 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hard-ed35 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search_7c4f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.component_fresh_630e {
    padding: 1.5rem;
}

.button_green_6ae3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-lower-e276 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-lower-e276 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;
}

.popup-lower-e276 li:last-child {
    border-bottom: none;
}

.popup-lower-e276 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.section_easy_79e8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.steel-6316 {
    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);
}

.steel-6316:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_2029 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-current-f03a {
    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);
}

.wrapper-copper-d1ff {
    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;
}

.sort-57e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column-49db {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_73fb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.huge_7d1e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_0631 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_easy_3564 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.input_motion_fbe5 {
    display: flex;
    gap: 1rem;
}

.input_motion_fbe5 .table-0287 {
    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;
}

.alert-989c {
    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);
}

.current-6d98 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.notification_easy_4ce7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_easy_4ce7 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;
}

.notification_easy_4ce7 li:last-child {
    border-bottom: none;
}

.notification_easy_4ce7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.column_orange_1336 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column_orange_1336 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_orange_1336 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-f1a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dim-f1a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-d5eb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.up_8896 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_advanced_b4b2 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hover_b9ee {
    font-size: 1rem;
}

.feature_c363 {
    padding: 1.5rem;
}

.center_bcb6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.badge_1439 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.badge_1439 .upper_0aae {
    text-align: center;
}

.badge_1439 .tertiary_prev_0037 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.badge_1439 .header-fast-e7bc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.in_4b56 {
    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);
}

.in_4b56:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.nav-bright-4a05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-bright-4a05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-7046 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-7046:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-b687 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-0cab {
    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);
}

.main_wood_13d2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.black_e70e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-iron-3e05 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-8a25 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.complex-0467 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table-soft-d1f6 {
    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);
}

.hidden_under_2364 {
    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;
}

.hidden_under_2364.gallery_d682 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.hidden_under_2364.hover-99c1 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.hidden_under_2364.wood-5ca1 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.hidden_under_2364.fluid_03bb {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.hidden_under_2364.gradient-4428 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hero_c243 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_bright_a55d {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_e7e6 {
    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);
}

.light-0511 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.plasma-1acf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma-1acf 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;
}

.plasma-1acf li:last-child {
    border-bottom: none;
}

.plasma-1acf li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.active_fdb3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_fdb3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_fdb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_cold_e965 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip_cold_e965:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip_cold_e965.dim_0353 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tooltip_cold_e965.dim_0353 {
        grid-column: span 3;
    }
}

.mini_6037 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tooltip_cold_e965.dim_0353 .mini_6037 {
    background: rgba(6, 182, 212, 0.1);
}

.text-glass-6f81 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.component-upper-d00c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tooltip_cold_e965.dim_0353 .component-upper-d00c {
    color: var(--info-color);
}

.video-107b {
    padding: 1.5rem;
    text-align: center;
}

.message_hard_d584 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tooltip_cold_e965.dim_0353 .message_hard_d584 {
    color: var(--info-color);
}

.list-static-3ff9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-liquid-a62d {
    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 */
.table-black-f597 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-black-f597 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth_f784 {
    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);
}

.smooth_f784:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_green_a579 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-faba {
    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);
}

.gradient-01f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown-lower-5890 {
    flex: 1;
}

.message-pink-e359 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite-9217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_pro_a674 {
    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);
}

.info-smooth-2baf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thumbnail-48ea {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.input_narrow_191f {
    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);
}

.short_7f1a {
  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);
}

.short_7f1a .upper_0aae {
    text-align: center;
}

.short_7f1a .narrow-a3e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.short_7f1a .tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cold-b067 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_advanced_9138 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_9839 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.silver_60e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new_2825 {
    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);
}

.carousel-smooth-f64c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower-2f7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-wide-f741 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-wide-f741 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-wide-f741 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-clean-2559 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.menu-clean-2559:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in-fab6 {
    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);
}

.block-fixed-6923 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.nav_58db {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.article-6fc7 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-6fc7.slider-31a4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.article-6fc7.title-aefd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.article-6fc7.notification_cold_1d38 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.wrapper-50c5 {
    padding: 1.5rem;
    text-align: center;
}

.logo-491e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.column-de4f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.column-de4f .tiny-25fa {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.description-paper-a539 {
    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);
}

.description-paper-a539:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active-in-fd2e {
  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);
}

.black_5d93 {
    text-align: center;
}

.black_5d93 .narrow-a3e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.black_5d93 .tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.sidebar-e6a4 { text-align: center; }
.right_e339 { text-align: left; }
.green_5b7c { text-align: right; }

.main_pro_05b8 { margin-bottom: 0; }
.table_outer_31e0 { margin-bottom: 0.5rem; }
.border_a420 { margin-bottom: 1rem; }
.button-hot-86f0 { margin-bottom: 1.5rem; }
.secondary_2b64 { margin-bottom: 2rem; }

.warm-3532 { margin-top: 0; }
.section-complex-2d83 { margin-top: 0.5rem; }
.left_ed65 { margin-top: 1rem; }
.first_505a { margin-top: 1.5rem; }
.wrapper-cd1d { margin-top: 2rem; }

.fn-hidden-1774 { display: none; }
.fn-visible-1774 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .huge_3ba5 {
        padding: 6rem 0 3rem;
    }
    
    .widget-e861 {
        text-align: center;
    }
    
    .badge_f353 {
        text-align: center;
    }
    
    .list_cold_2143 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .element_9d83,
    .component-fast-1ed2,
    .detail-tiny-0582,
    .disabled-dynamic-cd63 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .huge_3ba5 {
        background: none;
    }
}

/* Providers Section */
.column-dim-4e2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-2880 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-2880 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-2880 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_a729 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.action_a729:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.link-light-c83c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.summary_motion_8845 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.column-799c {
    list-style: none;
    padding: 0;
}

.column-799c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.column-799c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.item-4a4d {
    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);
}

.item-4a4d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.gold-6586 {
    padding: var(--section-padding);
}

.thumbnail-4f90 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-4f90 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_a224 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel_a224:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.brown-364c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.article_b05e {
    display: flex;
    flex-direction: column;
}

.huge-649d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tabs_tiny_6953 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.element-cbe9 {
    color: var(--accent-color);
}

.inner_df88 {
    font-size: 1.25rem;
}

.static-f84b {
    margin-bottom: 1rem;
}

.static-f84b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.orange-5f29 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shadow-7bfd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.upper_0aae {
    text-align: center;
}

.narrow-a3e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.shade-small-e5d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_dim_6227 {
    margin: 2rem 0;
}

.over_4d2f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.over_4d2f .tooltip-lite-e266 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_liquid_c822 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.heading_a8de {
    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;
}

.heading_a8de:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.background_orange_3b1d {
    font-size: 2rem;
}

.tag_pink_d380 {
    display: flex;
    flex-direction: column;
}

.black-dc58 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.item-a55a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.column_e104 {
    padding: var(--section-padding);
}

.layout_aec1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .layout_aec1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout_aec1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_47f5 {
    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);
}

.wood_47f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wood_47f5 .narrow-a3e0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.wood_47f5 .tertiary_prev_0037 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.wood_47f5 .media-active-3166 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.surface_hot_4729 {
    margin-top: 4rem;
}

.aside_f4c9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.aside_f942 {
    overflow-x: auto;
}

.primary_orange_43cf {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.primary_orange_43cf thead {
    background: var(--accent-color);
}

.primary_orange_43cf th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.primary_orange_43cf td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_orange_43cf tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.primary_orange_43cf tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.paper_b858 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer-711f {
    max-width: 900px;
    margin: 0 auto;
}

.component_93e7 {
    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_93e7:hover {
    border-color: var(--accent-color);
}

.silver_8679 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.silver_8679 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.layout-162c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.component_93e7.fn-active-1774 .layout-162c {
    transform: rotate(45deg);
}

.feature-glass-788c {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.component_93e7.fn-active-1774 .feature-glass-788c {
    max-height: 1000px;
}

.feature-glass-788c p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.mask-79c8 {
    padding: var(--section-padding);
}

.silver_64c3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.wrapper_west_79aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver_a7a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver_a7a6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gold_c5ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-1848 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.red_8829 {
    font-size: 2rem;
}

.form-glass-4400 {
    color: var(--text-white);
    margin: 0;
}

.filter_tiny_967e {
    list-style: none;
    padding: 0;
}

.filter_tiny_967e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_tiny_967e li:last-child {
    border-bottom: none;
}

.up-aa03 {
    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);
}

.up-aa03 p {
    color: var(--success-color);
    margin: 0;
}

.thumbnail_fb3f {
    margin-top: 3rem;
}

.current-6d98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.widget_medium_93cc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .widget_medium_93cc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card_motion_6cee {
    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);
}

.panel_c9ce {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card_motion_6cee p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.item_68da {
    padding: var(--section-padding);
}

.liquid_edba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_edba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_b928 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.down_b928:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.search_ce7a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-under-0078 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.backdrop-outer-84b8 {
    flex: 1;
}

.thick-ceda {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.secondary-aebc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.row-light-f7ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-9fcf {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-9fcf:last-child {
    border-bottom: none;
}

/* Comparison Section */
.selected-fe4b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.notice_c238 {
    padding: var(--section-padding);
}

.box_531c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.active_9b2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_9b2d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-749c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-8707, .progress_short_74c1, .large-5fdc {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.large-5fdc {
    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 */
.thumbnail_under_16e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_0573 {
    margin: 2rem 0;
}

.dark_49c4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-top-4795 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.static_b77a {
    list-style: none;
    padding: 0;
}

.static_b77a 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;
}

.static_b77a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.static_b77a li:last-child {
    border-bottom: none;
}

.orange_a4a3 {
    text-align: center;
    margin-top: 2rem;
}

.preview-3237 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.surface-9921 {
    padding: var(--section-padding);
}

.row_pink_689d {
    margin: 2rem 0;
}

.accordion_0622 {
    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) {
    .accordion_0622 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.accordion_0622:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.action-504d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.primary_paper_926e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pink_84e6 {
    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;
}

.outline-3c73 {
    flex: 1;
}

.gallery_dynamic_9b77 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hidden_last_6f94 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.paper-c6d2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.stale-bff0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .stale-bff0 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.content_down_b3d5 {
    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);
}

.content_down_b3d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content_down_b3d5 .narrow-a3e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content_down_b3d5 .tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 1rem;
}

.card_light_19ca {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-silver-9fd1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.hero-silver-9fd1 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.component_faaf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .component_faaf {
        grid-template-columns: 1fr 1fr;
    }
}

.hero_3b79 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail-dbd7 {
    margin-bottom: 1.5rem;
}

.detail-dbd7 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-dbd7 input,
.detail-dbd7 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;
}

.detail-dbd7 input:focus,
.detail-dbd7 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.first_afb7 {
    width: 100%;
    margin-top: 1rem;
}

.description_easy_42a6 {
    display: flex;
    align-items: center;
}

.picture_effd {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.modal_wide_ac28 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.inner_4795 {
    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;
}

.first-5a42 {
    color: var(--text-gray);
}

.dropdown-lower-d77e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.text_purple_5d26 {
    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);
}

.text_purple_5d26 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.focus_wood_63dd {
    margin-top: 3rem;
}

.form_pink_5ace {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hard_a4ba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused_1c08 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.title-0d09 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.title-0d09:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.black-e626 {
    padding: var(--section-padding);
}

.container_ef59 {
    margin: 2rem 0;
}

.notice-cool-c229 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.content-9241 {
    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;
}

.content-9241:hover, .content-9241.fn-active-1774 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.detail-6fd4 {
    display: none;
}

.detail-6fd4.fn-active-1774 {
    display: block;
}

.card_72b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-b793 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip-d3cb h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tooltip-d3cb ul {
    list-style: none;
    padding: 0;
}

.tooltip-d3cb ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tooltip-d3cb ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.lite_6481 {
    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 */
.mask_brown_b3e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-4041 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description_1680 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.yellow-577c {
    color: var(--accent-color);
    margin: 0;
}

.accent-e189 {
    display: flex;
    gap: 1.5rem;
}

.chip-middle-fd4e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.badge_0b10 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.panel_43a9 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel_43a9.detail-89e6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.panel_43a9.hover_5263 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.panel_43a9.description-fad3 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dark-3a6a {
    margin-top: 2rem;
}

.video_silver_03d8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.east_964d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .east_964d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_05a0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.current-cba3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pressed_fb3b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.banner-29a4 {
    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 */
.menu_ce6d {
    padding: var(--section-padding);
}

.block_west_e851 {
    margin: 2rem 0;
}

.cool_8645 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.next-98b2 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.preview-under-55b2 {
    list-style: none;
    padding: 0;
}

.preview-under-55b2 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;
}

.preview-under-55b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.preview-under-55b2 li:last-child {
    border-bottom: none;
}

.breadcrumb-black-0dbd {
    margin: 2rem 0;
}

.slider-lite-e9b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border_old_c837 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border_old_c837 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info_bc3f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_c8e7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-3742 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header-7681 {
    margin-top: 2rem;
}

.last_1083 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.outline-cold-6cf9 {
    list-style: none;
    padding: 0;
}

.plasma_9997 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.plasma_9997 a {
    color: var(--accent-color);
    text-decoration: none;
}

.plasma_9997 a:hover {
    text-decoration: underline;
}

.down-17e1 {
    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 */
.tabs-bottom-5624 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_8ea9 {
    margin: 2rem 0;
}

.wrapper-slow-f4cc {
    margin-bottom: 3rem;
}

.wrapper-slow-f4cc .accordion-top-4795 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pattern_static_2e2d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-last-605a {
    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);
}

.tag-last-605a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.widget_red_9f8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .widget_red_9f8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_a95e {
    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 */
.popup-out-f3b5 {
    padding: var(--section-padding);
}

.hero-mini-3b61 {
    margin: 2rem 0;
}

.sidebar-29f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar_out_6670 {
    overflow-x: auto;
    margin: 2rem 0;
}

.alert_e821 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.current-05c7 {
    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;
}

.footer-b757 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.gradient_brown_4daa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gradient_brown_4daa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-c908 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-c908 .tooltip-lite-e266 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.thick-c908 .search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_center_ae02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.sort-1f9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green_bd78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_bd78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-focused-7816 {
    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;
}

.label-focused-7816:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.picture-east-8757 {
    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);
}

.paragraph-plasma-8731 {
    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;
}

.info_a600 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background_d107 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hidden-solid-881e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.info-green-c657 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-b339 {
    color: var(--text-white);
    font-weight: 600;
}

.notification-4a60 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_smooth_25e5 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card_smooth_25e5 .table-0287 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.chip-9737 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .chip-9737 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-b4c6 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.first-b4c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-b4c6 .narrow-a3e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.first-b4c6 .tertiary_prev_0037 {
    color: var(--text-gray);
    font-size: 1rem;
}

.input-370f {
    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);
}

.logo-6cd4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.logo-6cd4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.preview_2c97 {
    margin: 2rem 0;
}

.advanced_26cf {
    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);
}

.advanced_26cf:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.aside_b646 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.north-b069 {
    flex: 1;
}

.image_blue_dd0f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_next_989d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.south_951f {
    margin: 2rem 0;
}

.blue-9717 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue-9717 .search_7c4f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.blue-9717 .button_green_6ae3 {
    color: var(--text-gray);
    margin: 0;
}

.hover-58df {
    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);
}

.hover-58df .detail-hard-44f9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.disabled_center_ae02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.outline-25c6 {
    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-large-e265 {
    flex: 1;
}

.glass-1964 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.outer_84be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.wrapper-copper-d1ff {
    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;
}

.description-dark-7be1 {
    flex: 1;
}

.sort-57e5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.column-49db {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.heading_0631 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.section_easy_3564 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.input_motion_fbe5 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.input_motion_fbe5 .table-0287 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.alert-989c {
    margin-top: 2rem;
}

.alert-989c .current-6d98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.hover-bronze-2286 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_advanced_f537 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu_advanced_f537 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_advanced_f537 .upper_0aae {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_54c5 {
    margin: 2rem 0;
}

.pagination_5859 {
    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 */
.gradient_hard_4a4c {
    padding: var(--section-padding);
}

.component_fresh_630e {
    margin-top: 1rem;
}

.popup-lower-e276 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.popup-lower-e276 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.popup-lower-e276 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hidden_motion_af37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_1cc2 {
    margin: 2rem 0;
}

.black_b290 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.frame-fluid-6b81 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detail_east_d082 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.paper-6f0e {
    margin: 2rem 0;
}

.panel-middle-7470 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.panel-middle-7470 .accordion-top-4795 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-fbd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-fbd1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-huge-eed3 {
    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);
}

.main-bf38 {
    color: var(--text-white);
    font-weight: 600;
}

.disabled-motion-383b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.section_7824 {
    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);
}

.section_7824 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.container_f8f0 {
    padding: var(--section-padding);
}

.table-4da4 {
    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;
}

.table-4da4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.huge-d483 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-d483 .panel_c9ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge-d483 .icon-3de0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hidden_95ac {
    flex: 1;
}

.brown_c20a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pagination-prev-1bc0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-prev-1bc0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pagination-prev-1bc0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gallery-copper-1e0f {
    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);
}

.gallery-copper-1e0f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery-copper-1e0f strong {
    color: var(--warning-color);
}

/* Slots Section */
.paragraph_676c {
    padding: var(--section-padding);
}

.fresh_6299 {
    margin: 2rem 0;
}

/* Table Games Section */
.chip_3462 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_4cd6 {
    margin: 2rem 0;
}

.wood-583c {
    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);
}

.wood-583c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wood-583c .feature_advanced_b4b2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood-583c .center_bcb6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.mask_dim_a8ed {
    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);
}

.mask_dim_a8ed .detail-hard-44f9 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.search-701a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-7068 {
    margin: 2rem 0;
}

.media-7229 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-173b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.basic_498c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb_fb9d {
    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);
}

.breadcrumb_fb9d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.breadcrumb_fb9d.fn-active-1774 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_3292 {
    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);
}

.warm-bc14 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm-bc14 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.huge_584c {
    padding: var(--section-padding);
}

.hidden_7ac1 {
    margin: 2rem 0;
}

.border_east_b589 {
    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);
}

.border_east_b589:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .border_east_b589 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tabs-d6a1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.selected-bf87 {
    flex: 1;
}

.copper_3be7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.current-e819 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.gold_aa54 {
    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;
}

.south-389c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.chip-a2c9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.small-ced7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_cce5 {
    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;
}

.frame_cce5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.smooth-4d91 {
    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);
}

.north-f424 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-f424 strong {
    color: var(--accent-color);
}

/* New Games Section */
.focus_2668 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_out_dd0b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .element_out_dd0b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_out_dd0b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_slow_e4ef {
    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;
}

.feature_slow_e4ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link-prev-8241 {
    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;
}

.detail-gold-f387 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.image_324c {
    font-size: 2rem;
}

.box-wide-0aad {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.gradient-up-fd4a {
    flex: 1;
}

.accent_d8c4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.dropdown-dark-441b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.module-5a3b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.in_2f8d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-warm-6870 {
    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;
}

.outer-7edd {
    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;
}

.outer-7edd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-d753 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple-d5af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-iron-d79a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .table-iron-d79a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_blue_20c2 {
    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);
}

.purple_188b {
    color: var(--text-white);
    font-weight: 600;
}

.current_1feb {
    color: var(--accent-color);
    font-weight: 600;
}

.detail-mini-4aff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.detail-mini-4aff strong {
    color: var(--accent-color);
}

/* Security Section */
.upper-d871 {
    padding: var(--section-padding);
}

/* Benefits Section */
.highlight-gold-00a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.red-f06d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.selected-012b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale-153d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.dropdown-light-d7a5 {
    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) {
    .dropdown-light-d7a5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.dropdown-light-d7a5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dropdown-light-d7a5 .wrapper-copper-d1ff {
    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;
}

.dropdown-light-d7a5 .description-dark-7be1 {
    flex: 1;
}

.dropdown-light-d7a5 .sort-57e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dropdown-light-d7a5 .column-49db {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.warm_dcf1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm_dcf1 .message-pink-e359 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_dcf1 .main_over_81c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warm_dcf1 .main_over_81c1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.warm_dcf1 .main_over_81c1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border_39f5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.summary_1890 {
    padding: var(--section-padding);
}

.narrow-c149 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .narrow-c149 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-3647 {
    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-3647:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.element-3647 .wood-fc7a {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-3647 .steel-f564 {
    flex: 1;
}

.element-3647 .pink-bc76 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-3647 .dynamic-2ff8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight_d5b0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_d5b0 .form_last_d904 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_d5b0 .under_c5bc {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.highlight_d5b0 .under_c5bc 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);
}

.highlight_d5b0 .under_c5bc li:last-child {
    border-bottom: none;
}

.highlight_d5b0 .under_c5bc 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;
}

.highlight_d5b0 .under_c5bc li strong {
    color: var(--text-white);
}

.outer-70d3 {
    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);
}

.outer-70d3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outer-70d3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.column_solid_6146 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-prev-ebe4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box-prev-ebe4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.right_5c9b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.right_5c9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.panel-d94e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast_349f {
    font-size: 2rem;
}

.plasma-90b8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bottom-4dfc {
    flex: 1;
}

.complex-cfa7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex-cfa7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.complex-cfa7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.slider_72e9 {
    margin-top: 3rem;
}

.cool_8645 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.next-98b2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-under-55b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-under-55b2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.preview-under-55b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.preview-under-55b2 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shadow_2aed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-9bfa {
    margin: 2rem 0;
}

.frame-4855 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.frame-4855 .accordion-top-4795 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-1362 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fixed-1362 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bottom_b131 {
    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);
}

.bottom_b131:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.input_034d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview_c151 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.hot-2abd {
    padding: var(--section-padding);
}

.article_over_1a37 {
    margin: 2rem 0;
}

.row-huge-339f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .row-huge-339f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row-huge-339f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-4791 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion-4791:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box-54d4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer_8d53 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.alert-fast-a09a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alert-fast-a09a.tabs_action_d3fa {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.warm-f3d4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.description_tall_41ca {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.content_e9cc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.silver-aac6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail_complex_2fdd {
    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);
}

.thumbnail_complex_2fdd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_complex_2fdd strong {
    color: var(--accent-color);
}

/* Update Log Section */
.shadow-3bab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white-80a6 {
    margin: 2rem 0;
}

.badge_inner_b6a0 {
    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) {
    .badge_inner_b6a0 {
        flex-direction: column;
        gap: 1rem;
    }
}

.badge_inner_b6a0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.badge_inner_b6a0::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);
}

.content_light_7ea7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.tiny_d7db {
    flex: 1;
}

.feature_green_bbfb {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form-5b99 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-5b99 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_6c75 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-old-2da6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link_upper_ad2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link_upper_ad2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-fresh-ab3a {
    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);
}

.tabs-ff08 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.picture_in_44ea {
    flex: 1;
}

.warm_456d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.title_white_a173 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.badge-plasma-5056 {
    margin-top: 2rem;
    text-align: center;
}

.message_ada5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message_ada5 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.nav-bright-4a05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-bright-4a05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-7046 {
    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);
}

.container-7046:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-7046 .notice-4c95 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-7046 .notice-5f33 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.container-7046 .image-large-7728 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.container-7046 .table-fb99 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.photo_c73c {
    padding: var(--section-padding);
}

.image-0cab .backdrop_action_6cba {
    flex: 1;
}

/* Promo Calendar Section */
.progress-95bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_d78a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_d78a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-dd26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-plasma-e2c7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail-da30 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-987b {
    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);
}

.clean-24df {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.small_e70d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.column-2ca7 {
    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);
}

.column-2ca7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column-2ca7 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.outline-c794 {
    padding: var(--section-padding);
}

.wood_9942 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wood_9942 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-1f5f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_b590 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup-motion-b009 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-motion-b009 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item-5716 {
    margin-top: 3rem;
}

.item-5716 .cool_8645 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.item-5716 .next-98b2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-5716 .preview-under-55b2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.item-5716 .preview-under-55b2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.item-5716 .preview-under-55b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.item-5716 .preview-under-55b2 li strong {
    color: var(--warning-color);
}

.chip_e0cf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_e0cf strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gradient-stone-ad3d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_south_8e8a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_south_8e8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_0975 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall_0975 .accordion-top-4795 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.item-01b7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tertiary-fresh-846a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.tertiary-fresh-846a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.right_91f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-top-4442 {
    flex: 1;
}

.list_wide_c620 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.box-static-72f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active-hot-dec5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.header-da04 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.summary_last_bdb0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .summary_last_bdb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-east-2353 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-east-2353:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-outer-dca9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-soft-6a0e {
    color: var(--text-gray);
    font-size: 1rem;
}

.hero-silver-9fd1 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_dynamic_4caf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.active_dynamic_4caf strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.button_fc60 { 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; }
.input_in_8394, .slider_34ad { max-width:100%; height:auto; }

.solid_ed3c, .dim-dd23, .gold-7922 { white-space:normal; }

.widget-e861,
.badge_f353,
.table-black-f597,
.nav-bright-4a05,
.south_951f,
.tertiary-wide-f741 {
  flex-wrap:wrap;
}

[class*="grid"],
.summary_last_bdb0,
.row-huge-339f,
.background-f851 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.huge_3ba5 img,
.badge_f353 img,
.primary_3bcc img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hard-c85f, .white-0322,
.top-5ffe, .breadcrumb-84be {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.aside_f942 { width:100%; overflow-x:auto; }
.aside_f942 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.info-2880 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .info-2880 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.action_a729 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.layout_aec1,
.primary_6b92,
.progress_dirty_dc60,
.tiny-6788,
.stale-bff0,
.summary_last_bdb0,
.row-huge-339f,
.background-f851,
.active-in-fd2e,
.hidden_7ac1,
.info-2880 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .layout_aec1,
  .primary_6b92,
  .progress_dirty_dc60,
  .tiny-6788,
  .stale-bff0,
  .summary_last_bdb0,
  .row-huge-339f,
  .background-f851,
  .active-in-fd2e,
  .hidden_7ac1,
  .info-2880 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.wood_47f5,
.content_down_b3d5,
.box-east-2353,
.white-ad36,
.motion-4791,
.black_5d93,
.border_east_b589,
.action_a729 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.smooth_8097,
.button_e0b5,
.paragraph_green_46ec {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.smooth_8097 > *,
.button_e0b5 > *,
.paragraph_green_46ec > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: c758 */
.ghost-box-q0 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
