/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.component-277f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.first-7d9d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .first-7d9d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .first-7d9d {
        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 */
.huge_d115 {
    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);
}

.iron_578c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .iron_578c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .left_1986 {
        grid-column: 1;
    }
    
    .component-dc22 {
        grid-column: 2;
    }
    
    .notice_tall_2926 {
        grid-column: 3;
    }
}

.left_1986 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.left_1986:hover img {
    transform: scale(1.05);
}

/* Navigation */
.new_3566 {
    display: none;
}

@media (min-width: 1024px) {
    .new_3566 {
        display: block;
    }
}

/* Grouped Navigation */
.avatar_18f9 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.image_brown_1536 {
    position: relative;
}

.bronze_3fd2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.image_brown_1536 .hidden_d8eb {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hidden_d8eb {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.hero-1a66 {
    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;
}

.hero-1a66:hover,
.hero-1a66.fn-active-d41b {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.media-black-3474 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .media-black-3474 {
        display: flex;
    }
}

/* Mobile Register Button */
.component-dc22 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .component-dc22 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.box_fast_4612 {
    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;
}

.box_fast_4612::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 */
.notice_tall_2926 {
    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) {
    .notice_tall_2926 {
        display: none;
    }
}

.notice_tall_2926 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.notice_tall_2926.fn-active-d41b span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.notice_tall_2926.fn-active-d41b span:nth-child(2) {
    opacity: 0;
}

.notice_tall_2926.fn-active-d41b span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-middle-d022 {
    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;
}

.sidebar-middle-d022.fn-active-d41b {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.input-hovered-6fb4 {
    overflow: hidden;
}

.wide_850b {
    list-style: none;
    padding: 0.75rem 0;
}

.caption-easy-bb74 {
    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;
}

.caption-easy-bb74:hover,
.caption-easy-bb74.fn-active-d41b {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.caption-easy-bb74.medium-8e4a {
    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;
}

.caption-easy-bb74.medium-8e4a::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 */
.hidden_f44f {
    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;
}

.list-thick-3e61 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.list-thick-3e61:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.thumbnail-out-7a60 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.thumbnail-out-7a60:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.rough-0e7d {
    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;
}

.rough-0e7d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.preview_light_9e90 {
    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;
}

.chip_large_781c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.chip_large_781c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.backdrop_tiny_24ba {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.backdrop_tiny_24ba:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.up-8d90 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.up-8d90: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);
}

.avatar-warm-97aa {
    font-size: 1em;
    font-weight: 700;
}

.focus-1e19 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.background_old_8db5 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.background_old_8db5::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;
}

.section-ee61 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .section-ee61 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.badge-selected-206f {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dirty_bdcb {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.wrapper-cb73 {
    margin-bottom: 2rem;
}

.caption-ad5b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .caption-ad5b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-126b {
    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);
}

.dark_ada7 {
    font-size: 1.5rem;
}

.icon-b490 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hidden_095d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort_gold_f268 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.sort_gold_f268:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.border_35df {
    text-align: center;
    margin-bottom: 3rem;
}

.component_hard_5824 {
    margin-bottom: 1rem;
}

.border_glass_6350 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.texture_8969 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .texture_8969 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .texture_8969.link_in_0a33 {
        direction: rtl;
    }
    
    .texture_8969.link_in_0a33 > * {
        direction: ltr;
    }
}

.video_d973 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.video_d973:first-child {
    margin-top: 0;
}

.form-0d65 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.text_lite_5b99 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.text_lite_5b99:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.description-pink-bffc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-pink-bffc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_c36d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-d908 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description_fab9 {
    list-style: none;
}

.description_fab9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_fab9 li:last-child {
    border-bottom: none;
}

/* Games Features */
.dropdown-next-991b {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.lite_239b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu-iron-4d87 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.over-b9fc {
    margin: 2rem 0;
}

.article-old-641e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.content_809b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.button-cf51 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.summary-84d0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.focus-4ef8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-4ef8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-518b {
    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);
}

.heading-518b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs-89d7 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.block_east_b2ad {
    font-size: 1.5rem;
}

.widget_pink_604f {
    color: var(--accent-color);
    margin: 0;
}

.link-silver-72eb {
    list-style: none;
}

.link-silver-72eb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.link-silver-72eb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.info-complex-c89b {
    margin: 2rem 0;
}

.short_357d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.popup_78d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .popup_78d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_yellow_c617 {
    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);
}

.cold-0a54 {
    font-size: 1.25rem;
}

.center-9a04 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.status_fixed_aac7,
.column-0b77 {
    text-align: center;
    margin: 2rem 0;
}

.wrapper_f74c,
.slider-rough-07e3 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pagination_in_2463 {
    margin: 2rem 0;
    text-align: center;
}

.frame_5a10 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.frame_5a10::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;
}

.hover-d1e5 {
    position: relative;
    z-index: 1;
}

.modal_fefd {
    margin-bottom: 1rem;
}

.progress_basic_0ea9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aside-580c {
    margin-bottom: 3rem;
}

.section_5221 {
    margin-top: 3rem;
}

.popup-e4d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .popup-e4d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-e4d2 .wide-126b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.next-a12e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-plasma-e8e9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.disabled-6102 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.paragraph-lower-42ed {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .paragraph-lower-42ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-lower-42ed {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.next-fbfe {
    margin-bottom: 1rem;
}

.upper-6ec6 img {
    margin-bottom: 1rem;
}

.next-2a94 {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-1347 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tall-8109 {
    list-style: none;
}

.tall-8109 li {
    margin-bottom: 0.5rem;
}

.tall-8109 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tall-8109 a:hover {
    color: var(--accent-color);
}

.filter-08b3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video_af99 {
    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);
}

.video_af99:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.lite_ccda {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.lite_ccda p {
    margin-bottom: 0.25rem;
}

.fixed_b557 {
    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) {
    .fixed_b557 {
        flex-direction: row;
    }
}

.bottom-266a {
    text-align: center;
}

@media (min-width: 768px) {
    .bottom-266a {
        text-align: left;
    }
}

.bottom-266a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight-dc6c {
    font-size: 0.75rem !important;
}

.item-f897 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pattern-2a29 {
    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);
    }
}

.overlay_bottom_8064 {
    animation: fadeInUp 0.6s ease-out;
}

.section-advanced-facc {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.green-2502 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-2502 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.layout_top_8976 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_top_8976 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-soft-02dd {
    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);
}

.tag-soft-02dd .menu-iron-4d87 {
    font-size: 1.25rem;
}

.tag-soft-02dd .border-gas-4fe0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.easy_3e0d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .easy_3e0d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_a10c {
    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);
}

.paragraph_a10c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-e54d {
    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);
}

.pink_d2a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hover-f446 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_mini_abae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-hot-f267 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification-hot-f267 .message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification-hot-f267 .dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-e810 {
    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);
}

.dropdown_clean_509d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.dropdown_clean_509d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dropdown_clean_509d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.alert_87ad {
    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);
}

.shadow-b412 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chip_ab07 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chip_ab07 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip_ab07 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);
}

.chip_ab07 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.chip_ab07 input::placeholder {
    color: var(--text-muted);
}

.active_pressed_ddf5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.module-stone-9fcf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.module-stone-9fcf input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.surface_right_ec47 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.surface_right_ec47:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.popup_78d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_78d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_yellow_c617 {
    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);
}

.active_yellow_c617 .cold-0a54 {
    font-size: 1.25rem;
}

.active_yellow_c617 .center-9a04 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.thick-3002 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-6073 {
    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);
}

.media-6073 .menu-iron-4d87 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-6073 .message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-6073 .dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left_8fab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_8e33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny_8e33 .nav_dirty_2e84 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny_8e33 .column_top_f356 {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel_4c7f {
    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);
}

.texture_small_fae0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture_small_fae0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-d86c {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.short-d86c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_8c07 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.grid_6fe0 {
    flex: 1;
}

.title_hot_3d3d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer_aad3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion_gas_491f {
    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);
}

.accordion_gas_491f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.content_f052 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_f052 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-over-8d35 {
    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);
}

.tabs-over-8d35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-cb5c {
    font-size: 2rem;
    flex-shrink: 0;
}

.first_d8a8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_green_c948 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.item_468d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.highlight_e8cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-fda0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content-up-fc47 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content-up-fc47 .content_center_463e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content-up-fc47 .upper_eec0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_95e4 {
    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);
}

.dynamic-de78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_9c84 {
    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);
}

.link_9c84 .menu-iron-4d87 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_9c84 .message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_9c84 .dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_dcdc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_dcdc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-pro-0ca0 {
    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);
}

.progress-pro-0ca0:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.frame-2b8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-2b8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-dynamic-62a0 {
    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);
}

.status-dynamic-62a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_plasma_9138 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_advanced_1ff3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content_809b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.active-over-a392 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.primary_silver_3976 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_out_d555 {
    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);
}

.feature_out_d555:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_91da {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.north-e215 {
    flex: 1;
}

.old-5fe4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.detail-selected-d6b6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.focused_7060 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-849c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy-88e1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy-88e1 .nav_dirty_2e84 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy-88e1 .column_top_f356 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-0b77 {
    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);
}

.under_b783 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_b783 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.tag_fluid_3352 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_fluid_3352 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-fixed-3aca {
    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);
}

.sidebar-fixed-3aca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_hot_d1da {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_3f08 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message-2123 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel_motion_1835 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_77e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-6934 {
    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_right_e9cf {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-70df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bottom_f61a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-de78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_9c84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.link_9c84 .message-8818 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_9c84 .dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_16c7 {
    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);
}

.main-dirty-7bb7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main-dirty-7bb7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-dirty-7bb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-210b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.in-210b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first-7a5c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.next-6164 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface-old-2121 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.media-62c3 {
    padding: 1.5rem;
}

.over_1ba3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-green-51aa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-green-51aa 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;
}

.component-green-51aa li:last-child {
    border-bottom: none;
}

.component-green-51aa li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.gradient-static-290c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-static-290c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-short-6d75 {
    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);
}

.message-short-6d75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dirty-f71c {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_1a27 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver-7478 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dynamic-0599 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box-upper-6e4c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-f687 {
    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);
}

.slider_cdd0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_small_64d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full_b7e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-89f1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern-selected-7fc5 {
    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);
}

.content_dim_8307 {
    text-align: center;
}

.hidden-2c37 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-f502 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over-929d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_cf2b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_cf2b .message-8818 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title_cf2b .dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_rough_e9f8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion_rough_e9f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion_rough_e9f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_3071 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lower_3071:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-877d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination_ed11 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.message-8818 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gradient-067f {
    padding: 1.5rem;
}

.dim_2036 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter-fluid-d3b3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-fluid-d3b3 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;
}

.filter-fluid-d3b3 li:last-child {
    border-bottom: none;
}

.filter-fluid-d3b3 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.outer-15cf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.accent-2a6f {
    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-2a6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-7b9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-c0f2 {
    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);
}

.component-e54d {
    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;
}

.pink_d2a1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover-f446 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_7ac5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.orange-d471 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-d135 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_focused_4a4e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pagination-south-a7f7 {
    display: flex;
    gap: 1rem;
}

.pagination-south-a7f7 .selected-9bc5 {
    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;
}

.highlight-huge-b1c2 {
    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);
}

.inner-0a1c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.solid_8076 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid_8076 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;
}

.solid_8076 li:last-child {
    border-bottom: none;
}

.solid_8076 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.mask_black_1806 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask_black_1806 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_black_1806 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow-a625 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.yellow-a625:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main_5522 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.east_f362 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.content_center_463e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.outer_3046 {
    font-size: 1rem;
}

.heading_2077 {
    padding: 1.5rem;
}

.upper_eec0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.stone-0086 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stone-0086 .content_dim_8307 {
    text-align: center;
}

.stone-0086 .grid-f502 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stone-0086 .component_dfa8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card-east-2e57 {
    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);
}

.card-east-2e57:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.secondary_5f32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_5f32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_hard_fe98 {
    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);
}

.tooltip_hard_fe98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_9f0e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-5757 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-c7be {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-mini-eec8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_934c {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-ddfc {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.picture-1228 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic-0e19 {
    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);
}

.yellow-ee01 {
    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;
}

.yellow-ee01.badge-liquid-0e6d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.yellow-ee01.chip-cb9d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.yellow-ee01.complex_e57e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.yellow-ee01.purple_360c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.yellow-ee01.logo_rough_fe01 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hot_048e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_purple_0565 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-a342 {
    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);
}

.dropdown-03b9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.left_8fab {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left_8fab 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;
}

.left_8fab li:last-child {
    border-bottom: none;
}

.left_8fab li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.tertiary_cbdb {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary_cbdb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary_cbdb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_b0ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.up_b0ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_b0ce.detail-f6e3 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .up_b0ce.detail-f6e3 {
        grid-column: span 3;
    }
}

.soft_c188 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.up_b0ce.detail-f6e3 .soft_c188 {
    background: rgba(6, 182, 212, 0.1);
}

.form-fixed-ac5d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.full-77fc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.up_b0ce.detail-f6e3 .full-77fc {
    color: var(--info-color);
}

.focused-8bbe {
    padding: 1.5rem;
    text-align: center;
}

.breadcrumb_2a4b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.up_b0ce.detail-f6e3 .breadcrumb_2a4b {
    color: var(--info-color);
}

.mini-40fd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.large_c01e {
    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 */
.over-1b11 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .over-1b11 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption-5e41 {
    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);
}

.caption-5e41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-4cad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-6073 {
    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);
}

.cold-0a54 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_c8ee {
    flex: 1;
}

.short_357d {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-green-1eaf {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-f1c8 {
    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);
}

.right-a085 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.white-4901 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pattern-2a29 {
    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);
}

.block-ebd2 {
  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);
}

.block-ebd2 .content_dim_8307 {
    text-align: center;
}

.block-ebd2 .hidden-2c37 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.block-ebd2 .grid-f502 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hidden-7784 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_8ef1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-red-71e0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_copper_5ea7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_c7d5 {
    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);
}

.title-cace {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.badge_3216 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-fast-cc1c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget-fast-cc1c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget-fast-cc1c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_b779 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main_b779:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_8a8f {
    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);
}

.focus_77a6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.filter-f02f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.notice_0acc {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice_0acc.liquid_8bb0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.notice_0acc.notification-out-0e10 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.notice_0acc.thumbnail_1f54 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.card-11a7 {
    padding: 1.5rem;
    text-align: center;
}

.short_e4fd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paper_7513 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.paper_7513 .overlay-left-b030 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.easy_6baf {
    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);
}

.easy_6baf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.sidebar-33b7 {
  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);
}

.banner_dim_8bf2 {
    text-align: center;
}

.banner_dim_8bf2 .hidden-2c37 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.banner_dim_8bf2 .grid-f502 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.gold-e6af { text-align: center; }
.overlay-1f81 { text-align: left; }
.plasma_9d11 { text-align: right; }

.main_c9d4 { margin-bottom: 0; }
.table-upper-833a { margin-bottom: 0.5rem; }
.pressed_6086 { margin-bottom: 1rem; }
.down_7101 { margin-bottom: 1.5rem; }
.left_aae4 { margin-bottom: 2rem; }

.center_1a2a { margin-top: 0; }
.action_e7c1 { margin-top: 0.5rem; }
.dynamic-6004 { margin-top: 1rem; }
.iron-15e6 { margin-top: 1.5rem; }
.cool-1839 { margin-top: 2rem; }

.fn-hidden-d41b { display: none; }
.fn-visible-d41b { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .background_old_8db5 {
        padding: 6rem 0 3rem;
    }
    
    .section-ee61 {
        text-align: center;
    }
    
    .texture_8969 {
        text-align: center;
    }
    
    .caption-ad5b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .huge_d115,
    .sidebar-middle-d022,
    .frame_5a10,
    .disabled-6102 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .background_old_8db5 {
        background: none;
    }
}

/* Providers Section */
.form-silver-caae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-easy-fe0c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-easy-fe0c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-easy-fe0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-c0e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.short-c0e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_easy_7d3d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.element-4c83 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.row_current_07f7 {
    list-style: none;
    padding: 0;
}

.row_current_07f7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.row_current_07f7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.feature_1ee3 {
    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);
}

.feature_1ee3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.focus-lite-116a {
    padding: var(--section-padding);
}

.motion_0b7c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_0b7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-3dc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-3dc4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-1365 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.content-c3b2 {
    display: flex;
    flex-direction: column;
}

.row-8a86 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo_silver_53e4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.old-5f16 {
    color: var(--accent-color);
}

.video-8225 {
    font-size: 1.25rem;
}

.element-6db9 {
    margin-bottom: 1rem;
}

.element-6db9 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.table_pressed_6c2d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.background-yellow-e405 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.content_dim_8307 {
    text-align: center;
}

.hidden-2c37 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-f502 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.thick-d663 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-f1ff {
    margin: 2rem 0;
}

.footer-glass-1fd0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-glass-1fd0 .menu-iron-4d87 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-0e1a {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pattern_355b {
    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;
}

.pattern_355b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout_563c {
    font-size: 2rem;
}

.tag_4287 {
    display: flex;
    flex-direction: column;
}

.chip_black_6b3b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.module-286d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.dropdown_selected_8dba {
    padding: var(--section-padding);
}

.wrapper-green-b1c8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper-green-b1c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-green-b1c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-86e5 {
    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);
}

.primary-86e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.primary-86e5 .hidden-2c37 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.primary-86e5 .grid-f502 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.primary-86e5 .header-copper-4977 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.content_pro_e45d {
    margin-top: 4rem;
}

.menu_aef7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.heading-iron-7951 {
    overflow-x: auto;
}

.panel-7ddb {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-7ddb thead {
    background: var(--accent-color);
}

.panel-7ddb th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.panel-7ddb td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-7ddb tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.panel-7ddb tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.center-23d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_6442 {
    max-width: 900px;
    margin: 0 auto;
}

.texture_9319 {
    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);
}

.texture_9319:hover {
    border-color: var(--accent-color);
}

.dropdown-285a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dropdown-285a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.tabs-d5a9 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.texture_9319.fn-active-d41b .tabs-d5a9 {
    transform: rotate(45deg);
}

.box_9dc4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.texture_9319.fn-active-d41b .box_9dc4 {
    max-height: 1000px;
}

.box_9dc4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.table_1b6e {
    padding: var(--section-padding);
}

.dropdown_clean_509d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.notification_fixed_ed38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_da6e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_da6e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert-360c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_5c3a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tertiary_46dc {
    font-size: 2rem;
}

.border-7dcd {
    color: var(--text-white);
    margin: 0;
}

.slider-3a3a {
    list-style: none;
    padding: 0;
}

.slider-3a3a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-3a3a li:last-child {
    border-bottom: none;
}

.gradient-pro-6167 {
    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);
}

.gradient-pro-6167 p {
    color: var(--success-color);
    margin: 0;
}

.description_3941 {
    margin-top: 3rem;
}

.inner-0a1c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pagination_short_ee53 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination_short_ee53 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-a18f {
    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);
}

.copper-19de {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.module-a18f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.accent-gas-98b2 {
    padding: var(--section-padding);
}

.menu-0b65 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-0b65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_copper_9794 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notice_copper_9794:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.modal-soft-b649 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status_33b0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pagination-advanced-093c {
    flex: 1;
}

.pressed-7ba0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.iron-b0da {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.highlight_cold_ddb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-fab7 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.left-fab7:last-child {
    border-bottom: none;
}

/* Comparison Section */
.label_596f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.in-4ffa {
    padding: var(--section-padding);
}

.bottom_11cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.input_a205 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_a205 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-8010 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_mini_8933, .footer-hot-7ef1, .prev_08f8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.prev_08f8 {
    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 */
.liquid-d6a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_2d09 {
    margin: 2rem 0;
}

.detail_2292 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-5f44 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-4c7e {
    list-style: none;
    padding: 0;
}

.header-4c7e 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;
}

.header-4c7e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.header-4c7e li:last-child {
    border-bottom: none;
}

.surface-cf67 {
    text-align: center;
    margin-top: 2rem;
}

.thumbnail_static_7ecd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hover-b3a1 {
    padding: var(--section-padding);
}

.background-b643 {
    margin: 2rem 0;
}

.module_green_032f {
    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) {
    .module_green_032f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.module_green_032f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message-f0a5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.main_aec9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.table_08cf {
    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;
}

.block-east-064e {
    flex: 1;
}

.outline_2008 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.focus-0fa3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.link_hard_01de {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.info_pink_4f2c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .info_pink_4f2c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.carousel_green_4124 {
    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);
}

.carousel_green_4124:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel_green_4124 .hidden-2c37 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel_green_4124 .grid-f502 {
    color: var(--text-gray);
    font-size: 1rem;
}

.surface-lite-3790 {
    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);
}

.large-21ea {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.large-21ea strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.backdrop-hard-b562 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .backdrop-hard-b562 {
        grid-template-columns: 1fr 1fr;
    }
}

.icon_da82 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_wood_1503 {
    margin-bottom: 1.5rem;
}

.row_wood_1503 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.row_wood_1503 input,
.row_wood_1503 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;
}

.row_wood_1503 input:focus,
.row_wood_1503 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.wide-ef67 {
    width: 100%;
    margin-top: 1rem;
}

.hard_eaa5 {
    display: flex;
    align-items: center;
}

.overlay-south-0258 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.label_d578 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.thick_124f {
    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;
}

.title_solid_586a {
    color: var(--text-gray);
}

.light-a45a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.background_b9e2 {
    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);
}

.background_b9e2 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.overlay_new_ed34 {
    margin-top: 3rem;
}

.description_d822 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.content-8f79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action-f2db {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.caption-de83 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-de83:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hidden-basic-b196 {
    padding: var(--section-padding);
}

.video_63ed {
    margin: 2rem 0;
}

.video-2c99 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.heading_hard_3453 {
    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;
}

.heading_hard_3453:hover, .heading_hard_3453.fn-active-d41b {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.header_df8a {
    display: none;
}

.header_df8a.fn-active-d41b {
    display: block;
}

.grid-under-802b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-3c29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.liquid_dcd4 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.liquid_dcd4 ul {
    list-style: none;
    padding: 0;
}

.liquid_dcd4 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.liquid_dcd4 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert-0bae {
    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 */
.texture-center-fc79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-3670 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale-522f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.in_9fb7 {
    color: var(--accent-color);
    margin: 0;
}

.preview_371e {
    display: flex;
    gap: 1.5rem;
}

.slider-up-1d92 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-pink-801f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.current-d37c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.current-d37c.banner-hard-faff {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.current-d37c.grid-tall-dd12 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.current-d37c.outline-huge-f8a5 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accent-hard-f0ee {
    margin-top: 2rem;
}

.column_37d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar-smooth-2d30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .avatar-smooth-2d30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_warm_1bcc {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.overlay_basic_773b {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.thick-111d {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.pressed-fc08 {
    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 */
.aside-ef06 {
    padding: var(--section-padding);
}

.fresh_9398 {
    margin: 2rem 0;
}

.gallery-warm-fa46 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.copper_2b2b {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.current-19cc {
    list-style: none;
    padding: 0;
}

.current-19cc 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;
}

.current-19cc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.current-19cc li:last-child {
    border-bottom: none;
}

.dark_20f4 {
    margin: 2rem 0;
}

.picture-64f6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hidden-8f43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-8f43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wood-78ff {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_06dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-b8c2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.modal_ad1e {
    margin-top: 2rem;
}

.title_hot_3d3d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.widget_78e9 {
    list-style: none;
    padding: 0;
}

.lower_e760 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.lower_e760 a {
    color: var(--accent-color);
    text-decoration: none;
}

.lower_e760 a:hover {
    text-decoration: underline;
}

.orange-a803 {
    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 */
.slider-12f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_huge_bfb9 {
    margin: 2rem 0;
}

.wrapper_a215 {
    margin-bottom: 3rem;
}

.wrapper_a215 .article-5f44 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.silver_a0a6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tertiary_8243 {
    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);
}

.tertiary_8243:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.short-afd4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .short-afd4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma-5f6f {
    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 */
.article-cb59 {
    padding: var(--section-padding);
}

.dark-ec89 {
    margin: 2rem 0;
}

.lite-8bec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert_gas_7379 {
    overflow-x: auto;
    margin: 2rem 0;
}

.clean_bdb3 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.column_9a16 {
    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;
}

.south_f3c0 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hard-e512 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hard-e512 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_7a16 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_7a16 .menu-iron-4d87 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.header_7a16 .message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_iron_7658 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.slow-bf63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-9a3d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-9a3d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim-2372 {
    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;
}

.dim-2372:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fluid_bb89 {
    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);
}

.preview-thick-5afd {
    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;
}

.gas-30cd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active_warm_e2d4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.under-e774 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.progress-4c56 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prev-ac08 {
    color: var(--text-white);
    font-weight: 600;
}

.preview_hot_ab86 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.yellow-e9cd {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yellow-e9cd .selected-9bc5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.carousel_white_ae6a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_white_ae6a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_right_70ef {
    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);
}

.header_right_70ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header_right_70ef .hidden-2c37 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_right_70ef .grid-f502 {
    color: var(--text-gray);
    font-size: 1rem;
}

.secondary-c5f7 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-b9d4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag-b9d4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.outline_77e3 {
    margin: 2rem 0;
}

.bright-6934 {
    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);
}

.bright-6934:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.aside_right_e9cf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row_paper_3c9e {
    flex: 1;
}

.tooltip-70df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bottom_f61a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.dynamic-de78 {
    margin: 2rem 0;
}

.link_9c84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_9c84 .message-8818 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.link_9c84 .dim_2036 {
    color: var(--text-gray);
    margin: 0;
}

.outer_16c7 {
    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_16c7 .wrapper_f74c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.input_iron_7658 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.list_91da {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.north-e215 {
    flex: 1;
}

.detail-selected-d6b6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.focused_7060 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.component-e54d {
    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;
}

.alert-stale-d7bf {
    flex: 1;
}

.pink_d2a1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hover-f446 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tooltip-d135 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.mask_focused_4a4e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.pagination-south-a7f7 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination-south-a7f7 .selected-9bc5 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight-huge-b1c2 {
    margin-top: 2rem;
}

.highlight-huge-b1c2 .inner-0a1c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.block_basic_5baf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-selected-7fc5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pattern-selected-7fc5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-selected-7fc5 .content_dim_8307 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over-929d {
    margin: 2rem 0;
}

.title_cf2b {
    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 */
.progress-7289 {
    padding: var(--section-padding);
}

.gradient-067f {
    margin-top: 1rem;
}

.filter-fluid-d3b3 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.filter-fluid-d3b3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.filter-fluid-d3b3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.accent_black_6399 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-d5cb {
    margin: 2rem 0;
}

.tertiary_bc78 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.detail-dim-188f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner-17e6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.static_f56b {
    margin: 2rem 0;
}

.slider-north-451a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slider-north-451a .article-5f44 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-bcda {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-bcda {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message-glass-f668 {
    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);
}

.secondary_clean_a038 {
    color: var(--text-white);
    font-weight: 600;
}

.accordion_8764 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.header_ce6f {
    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);
}

.header_ce6f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.image-gas-a145 {
    padding: var(--section-padding);
}

.backdrop_advanced_9974 {
    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;
}

.backdrop_advanced_9974:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table_2e8d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_2e8d .copper-19de {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_2e8d .background_fixed_563c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.badge-e4a5 {
    flex: 1;
}

.last_cd50 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.grid-copper-857b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-copper-857b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.grid-copper-857b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.selected-9a03 {
    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);
}

.selected-9a03 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.selected-9a03 strong {
    color: var(--warning-color);
}

/* Slots Section */
.shade_out_4a5d {
    padding: var(--section-padding);
}

.highlight_e8cd {
    margin: 2rem 0;
}

/* Table Games Section */
.highlight-tall-f5ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-fda0 {
    margin: 2rem 0;
}

.content-up-fc47 {
    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);
}

.content-up-fc47:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.content-up-fc47 .content_center_463e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content-up-fc47 .upper_eec0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accent_95e4 {
    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);
}

.accent_95e4 .wrapper_f74c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.modal-a0b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_7494 {
    margin: 2rem 0;
}

.alert_middle_61be {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_657e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.short-f0f9 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.notification-copper-f3cd {
    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);
}

.notification-copper-f3cd:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.notification-copper-f3cd.fn-active-d41b {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-9543 {
    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);
}

.shadow-hot-2696 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow-hot-2696 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.notice_hot_c98b {
    padding: var(--section-padding);
}

.secondary-4c82 {
    margin: 2rem 0;
}

.form-hovered-be56 {
    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);
}

.form-hovered-be56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .form-hovered-be56 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.current_4cee {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.list_solid_462f {
    flex: 1;
}

.focus_hot_ae6d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.next_b7ec {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.block-95b0 {
    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;
}

.panel-4142 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.old_64a5 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tertiary-in-23bb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient_cddf {
    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;
}

.gradient_cddf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.copper-50e7 {
    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);
}

.grid-d3a2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid-d3a2 strong {
    color: var(--accent-color);
}

/* New Games Section */
.description_f672 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-fa3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mini-fa3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini-fa3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_7f89 {
    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;
}

.backdrop_7f89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table-warm-eb95 {
    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;
}

.light-4be5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.main-af29 {
    font-size: 2rem;
}

.hidden-502c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.badge_6160 {
    flex: 1;
}

.footer_down_1ffb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.lower_1adc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.article-wood-f8e6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border_up_4458 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.image-ded0 {
    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;
}

.top-b6c7 {
    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;
}

.top-b6c7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.secondary-6345 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_155b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay_motion_be88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .overlay_motion_be88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-complex-a28f {
    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);
}

.backdrop-easy-cb23 {
    color: var(--text-white);
    font-weight: 600;
}

.gas-922d {
    color: var(--accent-color);
    font-weight: 600;
}

.fast_ecc0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.fast_ecc0 strong {
    color: var(--accent-color);
}

/* Security Section */
.gallery-middle-c068 {
    padding: var(--section-padding);
}

/* Benefits Section */
.label-top-f95e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.dropdown_84f8 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.menu_fresh_fc32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-2036 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.gallery_wood_f786 {
    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) {
    .gallery_wood_f786 {
        flex-direction: column;
        gap: 1rem;
    }
}

.gallery_wood_f786:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gallery_wood_f786 .component-e54d {
    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;
}

.gallery_wood_f786 .alert-stale-d7bf {
    flex: 1;
}

.gallery_wood_f786 .pink_d2a1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gallery_wood_f786 .hover-f446 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.block-1762 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-1762 .short_357d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-1762 .thick-3002 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-1762 .thick-3002 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.block-1762 .thick-3002 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.form_7aff {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.footer-f548 {
    padding: var(--section-padding);
}

.bronze-0817 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bronze-0817 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-thick-6b6d {
    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);
}

.message-thick-6b6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.message-thick-6b6d .tag_f9ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-thick-6b6d .texture-large-6380 {
    flex: 1;
}

.message-thick-6b6d .nav_dirty_2e84 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.message-thick-6b6d .brown-0f31 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm-4d17 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-4d17 .wood-f08f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm-4d17 .pro_05b9 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.warm-4d17 .pro_05b9 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);
}

.warm-4d17 .pro_05b9 li:last-child {
    border-bottom: none;
}

.warm-4d17 .pro_05b9 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;
}

.warm-4d17 .pro_05b9 li strong {
    color: var(--text-white);
}

.label_a1de {
    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);
}

.label_a1de p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.label_a1de strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.avatar-7fe6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_5786 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .filter_5786 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-deda {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-deda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.secondary-b0ae {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action_9c5c {
    font-size: 2rem;
}

.module-dark-df3c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_9bb4 {
    flex: 1;
}

.current-1983 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-1983 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.current-1983 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.backdrop-mini-35c0 {
    margin-top: 3rem;
}

.gallery-warm-fa46 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.copper_2b2b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current-19cc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-19cc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.current-19cc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.current-19cc li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.container_d14c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_basic_1ac0 {
    margin: 2rem 0;
}

.progress_a18d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.progress_a18d .article-5f44 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white_8396 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_8396 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-8058 {
    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);
}

.tooltip-8058:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.outer-f701 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.layout-prev-f1cc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.chip-hard-d5a8 {
    padding: var(--section-padding);
}

.solid_2b73 {
    margin: 2rem 0;
}

.alert_98c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .alert_98c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_98c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-2bb8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-2bb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.badge_5919 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.middle-edee {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.container-c9e2 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.container-c9e2.badge_fluid_60d6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.heading-liquid-8cae {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.disabled-51cd {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.main-lower-f8d0 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.photo_e9a4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-5e7f {
    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);
}

.pattern-5e7f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern-5e7f strong {
    color: var(--accent-color);
}

/* Update Log Section */
.feature-fae7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-light-8680 {
    margin: 2rem 0;
}

.paragraph_c81d {
    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) {
    .paragraph_c81d {
        flex-direction: column;
        gap: 1rem;
    }
}

.paragraph_c81d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph_c81d::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);
}

.list-solid-4b72 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.main-lower-cbd7 {
    flex: 1;
}

.section-a546 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.primary-hard-4638 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-hard-4638 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.module-b503 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-c7f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass-b0a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .glass-b0a0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-9462 {
    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);
}

.gold-fdc9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-5689 {
    flex: 1;
}

.accordion-gold-a278 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.filter_b763 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section_abe4 {
    margin-top: 2rem;
    text-align: center;
}

.detail-eab2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-eab2 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.secondary_5f32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_5f32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_hard_fe98 {
    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);
}

.tooltip_hard_fe98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip_hard_fe98 .dirty-f71c {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_hard_fe98 .focus_1a27 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tooltip_hard_fe98 .silver-7478 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tooltip_hard_fe98 .dynamic-0599 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.filter-2919 {
    padding: var(--section-padding);
}

.progress-5757 .item_efb6 {
    flex: 1;
}

/* Promo Calendar Section */
.icon-a163 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_1f94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_1f94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-09b6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-stale-d8a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tag-3115 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fast_bfeb {
    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);
}

.description-green-1834 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hard_7f93 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.secondary-north-1fb0 {
    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);
}

.secondary-north-1fb0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary-north-1fb0 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.aside-ea6b {
    padding: var(--section-padding);
}

.south_7484 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .south_7484 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_last_6298 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_dynamic_1ffa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_12d1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_12d1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.component_current_8aa6 {
    margin-top: 3rem;
}

.component_current_8aa6 .gallery-warm-fa46 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.component_current_8aa6 .copper_2b2b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component_current_8aa6 .current-19cc {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.component_current_8aa6 .current-19cc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.component_current_8aa6 .current-19cc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.component_current_8aa6 .current-19cc li strong {
    color: var(--warning-color);
}

.popup-medium-790e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup-medium-790e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.sort-iron-8c85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion_5a48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_5a48 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.west_0e88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west_0e88 .article-5f44 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.paragraph_small_cbb8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section_dc58 {
    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);
}

.section_dc58:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.prev-53aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_284e {
    flex: 1;
}

.hero-4608 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.label_a25f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.yellow-b6a8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.panel-short-5677 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info_dim_4c6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .info_dim_4c6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_55fc {
    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);
}

.highlight_55fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mini-397d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-west-a05b {
    color: var(--text-gray);
    font-size: 1rem;
}

.large-21ea {
    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);
}

.aside-c882 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.aside-c882 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.first-7d9d { 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; }
.sort_gold_f268, .text_lite_5b99 { max-width:100%; height:auto; }

.hidden_f44f, .rough-0e7d, .preview_light_9e90 { white-space:normal; }

.section-ee61,
.texture_8969,
.over-1b11,
.secondary_5f32,
.dynamic-de78,
.widget-fast-cc1c {
  flex-wrap:wrap;
}

[class*="grid"],
.info_dim_4c6c,
.alert_98c6,
.popup-e4d2 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.background_old_8db5 img,
.texture_8969 img,
.hidden_095d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.badge-selected-206f, .dirty_bdcb,
.component_hard_5824, .border_glass_6350 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.heading-iron-7951 { width:100%; overflow-x:auto; }
.heading-iron-7951 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hero-easy-fe0c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-easy-fe0c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.short-c0e8 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wrapper-green-b1c8,
.tooltip_cdd8,
.west_18b6,
.red-ec1f,
.info_pink_4f2c,
.info_dim_4c6c,
.alert_98c6,
.popup-e4d2,
.sidebar-33b7,
.secondary-4c82,
.hero-easy-fe0c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wrapper-green-b1c8,
  .tooltip_cdd8,
  .west_18b6,
  .red-ec1f,
  .info_pink_4f2c,
  .info_dim_4c6c,
  .alert_98c6,
  .popup-e4d2,
  .sidebar-33b7,
  .secondary-4c82,
  .hero-easy-fe0c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.primary-86e5,
.carousel_green_4124,
.highlight_55fc,
.wide-126b,
.container-2bb8,
.banner_dim_8bf2,
.form-hovered-be56,
.short-c0e8 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.popup-6129,
.surface-mini-c8ca,
.paper_72ed {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.popup-6129 > *,
.surface-mini-c8ca > *,
.paper_72ed > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6471 */
.shadow-element-a8 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
