/* {$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;
}

.copper-fc4c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.popup-center-6c21 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .popup-center-6c21 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .popup-center-6c21 {
        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 */
.slow-6400 {
    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);
}

.component_in_77fd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .component_in_77fd {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .feature_f108 {
        grid-column: 1;
    }
    
    .notice-gas-d66a {
        grid-column: 2;
    }
    
    .hero-6c3e {
        grid-column: 3;
    }
}

.feature_f108 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.feature_f108:hover img {
    transform: scale(1.05);
}

/* Navigation */
.item-first-1bda {
    display: none;
}

@media (min-width: 1024px) {
    .item-first-1bda {
        display: block;
    }
}

/* Grouped Navigation */
.paragraph-c104 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.wide_7fab {
    position: relative;
}

.middle-ada8 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.wide_7fab .disabled-fedd {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.disabled-fedd {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.panel_99cb {
    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;
}

.panel_99cb:hover,
.panel_99cb.fn-active-9277 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.under-511e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .under-511e {
        display: flex;
    }
}

/* Mobile Register Button */
.notice-gas-d66a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .notice-gas-d66a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.clean_b4f3 {
    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;
}

.clean_b4f3::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 */
.hero-6c3e {
    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) {
    .hero-6c3e {
        display: none;
    }
}

.hero-6c3e span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hero-6c3e.fn-active-9277 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hero-6c3e.fn-active-9277 span:nth-child(2) {
    opacity: 0;
}

.hero-6c3e.fn-active-9277 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.picture_west_39e6 {
    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;
}

.picture_west_39e6.fn-active-9277 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.label_3126 {
    overflow: hidden;
}

.basic-7d08 {
    list-style: none;
    padding: 0.75rem 0;
}

.gallery_down_0c7a {
    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;
}

.gallery_down_0c7a:hover,
.gallery_down_0c7a.fn-active-9277 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.gallery_down_0c7a.box_9d11 {
    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;
}

.gallery_down_0c7a.box_9d11::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 */
.wrapper-dark-9478 {
    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;
}

.mask_red_bb09 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.mask_red_bb09:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.media-5882 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.media-5882:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.inner_7250 {
    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;
}

.inner_7250:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.aside_old_402a {
    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;
}

.feature-selected-df41 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.feature-selected-df41:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.huge-191c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.huge-191c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.dim_27a0 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.dim_27a0: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);
}

.sort-62c7 {
    font-size: 1em;
    font-weight: 700;
}

.focus-a223 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.west_1269 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.west_1269::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;
}

.item_east_e8be {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item_east_e8be {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.simple_8cf8 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gold-bfab {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.purple-7ba8 {
    margin-bottom: 2rem;
}

.main_easy_7d44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .main_easy_7d44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first_8e5b {
    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);
}

.link-static-73f9 {
    font-size: 1.5rem;
}

.accent-current-018b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.notice-d7ec {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-middle-821e {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.menu-middle-821e:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.texture_a35d {
    text-align: center;
    margin-bottom: 3rem;
}

.border-wood-f707 {
    margin-bottom: 1rem;
}

.hero_hard_9740 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.component_lower_20d4 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .component_lower_20d4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .component_lower_20d4.top-b756 {
        direction: rtl;
    }
    
    .component_lower_20d4.top-b756 > * {
        direction: ltr;
    }
}

.basic_6bed {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.basic_6bed:first-child {
    margin-top: 0;
}

.accent-acce {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.avatar_ce30 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.avatar_ce30:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.element-2472 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-2472 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-7739 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dim_8f9c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb-bfa4 {
    list-style: none;
}

.breadcrumb-bfa4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-bfa4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.soft-a35a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.outline-f10f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert-first-a3b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.focused_7073 {
    margin: 2rem 0;
}

.summary-6d28 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.inner_a5b4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.button-1baa {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.paper_a9d5 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.box-1315 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-1315 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_3462 {
    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);
}

.dropdown_3462:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shadow-solid-4272 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.column-b6d7 {
    font-size: 1.5rem;
}

.image_active_79ae {
    color: var(--accent-color);
    margin: 0;
}

.form-e229 {
    list-style: none;
}

.form-e229 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.form-e229 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.highlight_pressed_2f84 {
    margin: 2rem 0;
}

.dynamic_69c2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.white_e8d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .white_e8d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-afd3 {
    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);
}

.image_active_8354 {
    font-size: 1.25rem;
}

.section_down_b496 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.accent-glass-7bc4,
.new_132c {
    text-align: center;
    margin: 2rem 0;
}

.link_bronze_3854,
.logo_down_6f74 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.accent-up-9161 {
    margin: 2rem 0;
    text-align: center;
}

.sidebar_black_6df3 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar_black_6df3::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;
}

.slow-3e1e {
    position: relative;
    z-index: 1;
}

.banner_0af4 {
    margin-bottom: 1rem;
}

.chip_down_1378 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warm-5958 {
    margin-bottom: 3rem;
}

.picture_44fd {
    margin-top: 3rem;
}

.card-motion-8a2d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card-motion-8a2d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-motion-8a2d .first_8e5b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border_d18e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma_b873 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.tag_61a7 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.primary-top-ab53 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .primary-top-ab53 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-top-ab53 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.label_d5de {
    margin-bottom: 1rem;
}

.tertiary-basic-0732 img {
    margin-bottom: 1rem;
}

.message_eeff {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-up-98c4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.element_0615 {
    list-style: none;
}

.element_0615 li {
    margin-bottom: 0.5rem;
}

.element_0615 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.element_0615 a:hover {
    color: var(--accent-color);
}

.mask_pressed_257e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chip-77cb {
    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);
}

.chip-77cb:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.media_large_f1ab {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.media_large_f1ab p {
    margin-bottom: 0.25rem;
}

.media-outer-98ce {
    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) {
    .media-outer-98ce {
        flex-direction: row;
    }
}

.shadow-south-b532 {
    text-align: center;
}

@media (min-width: 768px) {
    .shadow-south-b532 {
        text-align: left;
    }
}

.shadow-south-b532 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.menu_54ad {
    font-size: 0.75rem !important;
}

.surface-572f {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.complex-4919 {
    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);
    }
}

.hard_b1e7 {
    animation: fadeInUp 0.6s ease-out;
}

.chip-1aaa {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.sidebar-smooth-28bf {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-smooth-28bf {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.media_south_c985 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_south_c985 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade_focused_3f5f {
    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);
}

.shade_focused_3f5f .alert-first-a3b4 {
    font-size: 1.25rem;
}

.shade_focused_3f5f .backdrop-next-703f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.feature-02cf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature-02cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-1638 {
    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);
}

.detail-1638:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink-5354 {
    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);
}

.focus_d0dd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tabs_upper_8b0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_mini_e1fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-5633 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-5633 .input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-5633 .copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-liquid-1fbd {
    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);
}

.north_0fea {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.north_0fea img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.north_0fea img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.sort_8f9c {
    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);
}

.sidebar-first-55f0 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chip-dfee {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chip-dfee label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip-dfee 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-dfee input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.chip-dfee input::placeholder {
    color: var(--text-muted);
}

.detail_prev_20ed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.container_fa4d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.container_fa4d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.secondary_6f0c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.secondary_6f0c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.white_e8d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white_e8d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-afd3 {
    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);
}

.white-afd3 .image_active_8354 {
    font-size: 1.25rem;
}

.white-afd3 .section_down_b496 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.stale_2466 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood_c5f0 {
    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);
}

.wood_c5f0 .alert-first-a3b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood_c5f0 .input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_c5f0 .copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-6154 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_south_26b2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_south_26b2 .south-e201 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_south_26b2 .message_inner_d2fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_1c09 {
    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);
}

.accordion_dynamic_6a3a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion_dynamic_6a3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_clean_ffb5 {
    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);
}

.preview_clean_ffb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-easy-6af6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.soft-a31a {
    flex: 1;
}

.notification_14c3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.backdrop-warm-be19 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.list-4f41 {
    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);
}

.list-4f41:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.silver_4e99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver_4e99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-c262 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-c262:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-bright-84eb {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_7e6a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wrapper-clean-c39b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box_a6fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wide-7a4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-d162 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-cool-ad74 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden-cool-ad74 .focus-static-597a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-cool-ad74 .layout_top_ac7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.in_7ae6 {
    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);
}

.module_fixed_5ff0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-narrow-b5aa {
    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);
}

.preview-narrow-b5aa .alert-first-a3b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-narrow-b5aa .input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview-narrow-b5aa .copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_white_c4ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_white_c4ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_4501 {
    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);
}

.hero_4501:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.pattern-459c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-459c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_wood_5f1f {
    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);
}

.backdrop_wood_5f1f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_c4e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-right-3688 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inner_a5b4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.image_basic_ea0c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.east-d0f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-aaaf {
    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);
}

.complex-aaaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-ebdb {
    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);
}

.accordion_eb64 {
    flex: 1;
}

.popup-2941 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.overlay-cddc {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.input_selected_d000 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-6248 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-27f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-27f7 .south-e201 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-27f7 .message_inner_d2fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.new_132c {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-iron-a98e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-iron-a98e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.surface_7990 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_7990 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_3797 {
    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);
}

.down_3797:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-last-4d50 {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-motion-37a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-wide-5aa8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mini-73c8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thumbnail-gas-1040 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-b639 {
    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);
}

.first-fabe {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_inner_1970 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-9ea5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_fixed_5ff0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-narrow-b5aa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.preview-narrow-b5aa .input_3bf9 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview-narrow-b5aa .copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-middle-a19a {
    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);
}

.first_85e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first_85e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first_85e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under_cbf3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.under_cbf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-a1ad {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.notification_36f2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.simple_6d65 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gradient-pressed-6ffe {
    padding: 1.5rem;
}

.caption_9dce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overlay-cold-639b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-cold-639b 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;
}

.overlay-cold-639b li:last-child {
    border-bottom: none;
}

.overlay-cold-639b li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.shade-947d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-947d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_a518 {
    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);
}

.popup_a518:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-north-f077 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_bffc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag_top_a74c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.surface_b2af {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.button_fluid_f229 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_dba0 {
    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);
}

.pressed_04a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver_f467 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_plasma_57f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_7bc6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected-ddaa {
    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);
}

.texture_plasma_cfa6 {
    text-align: center;
}

.down-94fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_8463 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fluid_1d3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget-medium-ce27 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-medium-ce27 .input_3bf9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget-medium-ce27 .copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_4fa4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_4fa4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_4fa4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_black_45f2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.primary_black_45f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_21e3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.card_304f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_3bf9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden-purple-abd6 {
    padding: 1.5rem;
}

.copper_105d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-hovered-1f7f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-hovered-1f7f 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;
}

.info-hovered-1f7f li:last-child {
    border-bottom: none;
}

.info-hovered-1f7f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.focused-3fc1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.widget_1394 {
    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);
}

.widget_1394:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-red-f1ad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-84db {
    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);
}

.pink-5354 {
    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;
}

.focus_d0dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_upper_8b0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_0a5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west_daf3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_a0e6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption-232b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.selected-39a3 {
    display: flex;
    gap: 1rem;
}

.selected-39a3 .component-large-3ac3 {
    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;
}

.caption_large_e20c {
    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);
}

.highlight_under_99a2 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dynamic_83cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamic_83cd 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;
}

.dynamic_83cd li:last-child {
    border-bottom: none;
}

.dynamic_83cd li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.description_hard_858a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description_hard_858a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description_hard_858a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-e407 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary-e407:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_large_2096 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_9dbb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focus-static-597a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.west-51d4 {
    font-size: 1rem;
}

.form-clean-cbe2 {
    padding: 1.5rem;
}

.layout_top_ac7e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pattern-1734 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pattern-1734 .texture_plasma_cfa6 {
    text-align: center;
}

.pattern-1734 .mask_8463 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pattern-1734 .advanced_d82c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop-1831 {
    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);
}

.backdrop-1831:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.button-tiny-f37d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-tiny-f37d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm-d2d3 {
    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);
}

.warm-d2d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-09b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_66b7 {
    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);
}

.outline_0fb6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced_3497 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover-1ed8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_huge_0308 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption_gas_e7cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_south_84b1 {
    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);
}

.clean_9c2f {
    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;
}

.clean_9c2f.button-tall-1331 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.clean_9c2f.widget-3b88 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.clean_9c2f.title-e4eb {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.clean_9c2f.new-f45d {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.clean_9c2f.last-adc6 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.accordion-up-c5ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dirty-d6dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale-a678 {
    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);
}

.focused_83cc {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over-6154 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over-6154 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;
}

.over-6154 li:last-child {
    border-bottom: none;
}

.over-6154 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.dirty_70de {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dirty_70de {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty_70de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-ce9e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-ce9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-ce9e.aside_a3a0 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .video-ce9e.aside_a3a0 {
        grid-column: span 3;
    }
}

.dropdown-pro-dd50 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.video-ce9e.aside_a3a0 .dropdown-pro-dd50 {
    background: rgba(6, 182, 212, 0.1);
}

.copper_028d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.primary_paper_11de {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.video-ce9e.aside_a3a0 .primary_paper_11de {
    color: var(--info-color);
}

.wide_519a {
    padding: 1.5rem;
    text-align: center;
}

.orange_48a9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.video-ce9e.aside_a3a0 .orange_48a9 {
    color: var(--info-color);
}

.accordion_mini_1cef {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-green-7637 {
    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 */
.top_47ff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_47ff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_top_5097 {
    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);
}

.description_top_5097:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick_1ba7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood_c5f0 {
    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);
}

.image_active_8354 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row-light-8c6c {
    flex: 1;
}

.dynamic_69c2 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input-fixed-7caf {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-81b7 {
    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);
}

.yellow_57cc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.primary_over_944b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.complex-4919 {
    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);
}

.advanced-24a9 {
  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);
}

.advanced-24a9 .texture_plasma_cfa6 {
    text-align: center;
}

.advanced-24a9 .down-94fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.advanced-24a9 .mask_8463 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.aside_a258 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-7cdc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-be15 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected_0bec {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_526f {
    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);
}

.active_cool_3c66 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_885d {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-262b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-262b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small-262b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-48ef {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tertiary-48ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_medium_d4a8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.avatar_609b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget-west-566a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.description_4cb3 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description_4cb3.summary_warm_9860 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.description_4cb3.overlay-new-4e2d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.description_4cb3.in-9eb5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.black-8c44 {
    padding: 1.5rem;
    text-align: center;
}

.highlight_large_9b2c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort-18ef {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sort-18ef .label_bronze_6738 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.simple-f50b {
    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);
}

.simple-f50b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo_7490 {
  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);
}

.modal-2ebf {
    text-align: center;
}

.modal-2ebf .down-94fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.modal-2ebf .mask_8463 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.status-77de { text-align: center; }
.background_focused_6f38 { text-align: left; }
.border_be8c { text-align: right; }

.stale-f682 { margin-bottom: 0; }
.pro-0353 { margin-bottom: 0.5rem; }
.solid_de51 { margin-bottom: 1rem; }
.component-ecd3 { margin-bottom: 1.5rem; }
.selected_4a22 { margin-bottom: 2rem; }

.info_stone_50b4 { margin-top: 0; }
.dropdown-540e { margin-top: 0.5rem; }
.info_cc3b { margin-top: 1rem; }
.content_599f { margin-top: 1.5rem; }
.modal_5b27 { margin-top: 2rem; }

.fn-hidden-9277 { display: none; }
.fn-visible-9277 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .west_1269 {
        padding: 6rem 0 3rem;
    }
    
    .item_east_e8be {
        text-align: center;
    }
    
    .component_lower_20d4 {
        text-align: center;
    }
    
    .main_easy_7d44 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .slow-6400,
    .picture_west_39e6,
    .sidebar_black_6df3,
    .tag_61a7 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .west_1269 {
        background: none;
    }
}

/* Providers Section */
.notice-a136 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_ace7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_ace7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout_ace7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper_636f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.copper_636f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert-copper-642f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.aside_simple_d1eb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.warm-483f {
    list-style: none;
    padding: 0;
}

.warm-483f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.warm-483f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.accordion_5061 {
    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);
}

.accordion_5061 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.south_60b8 {
    padding: var(--section-padding);
}

.full_629e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_629e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-brown-24be {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-brown-24be:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag_bfac {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.active_a8a0 {
    display: flex;
    flex-direction: column;
}

.grid-last-b41d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sort-black-6b76 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hidden-e331 {
    color: var(--accent-color);
}

.aside_complex_9467 {
    font-size: 1.25rem;
}

.progress-6d68 {
    margin-bottom: 1rem;
}

.progress-6d68 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.media-plasma-bada {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.list-ce3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.texture_plasma_cfa6 {
    text-align: center;
}

.down-94fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_8463 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.summary-slow-44fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_8cf5 {
    margin: 2rem 0;
}

.paper-abe6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.paper-abe6 .alert-first-a3b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row-d66f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.short-5ebc {
    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;
}

.short-5ebc:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-38ba {
    font-size: 2rem;
}

.middle_7d05 {
    display: flex;
    flex-direction: column;
}

.active_f592 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tabs_c5eb {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.header-fast-d049 {
    padding: var(--section-padding);
}

.wrapper_down_b8ad {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper_down_b8ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_down_b8ad {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-dfc8 {
    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);
}

.tabs-dfc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs-dfc8 .down-94fd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tabs-dfc8 .mask_8463 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tabs-dfc8 .wood-9413 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.tall_e696 {
    margin-top: 4rem;
}

.mask-hovered-cf8e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.title-center-afaf {
    overflow-x: auto;
}

.heading-dirty-6dfb {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.heading-dirty-6dfb thead {
    background: var(--accent-color);
}

.heading-dirty-6dfb th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.heading-dirty-6dfb td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-dirty-6dfb tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.heading-dirty-6dfb tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.new_1c49 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-next-80ee {
    max-width: 900px;
    margin: 0 auto;
}

.logo-7296 {
    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);
}

.logo-7296:hover {
    border-color: var(--accent-color);
}

.static_80d1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.static_80d1 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.pagination-clean-7083 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.logo-7296.fn-active-9277 .pagination-clean-7083 {
    transform: rotate(45deg);
}

.stone_3d5b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.logo-7296.fn-active-9277 .stone_3d5b {
    max-height: 1000px;
}

.stone_3d5b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.slider-focused-4e3e {
    padding: var(--section-padding);
}

.north_0fea {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.secondary_up_a467 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_126b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_126b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_white_8741 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-15ba {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.paragraph_hard_17bc {
    font-size: 2rem;
}

.column_south_e55f {
    color: var(--text-white);
    margin: 0;
}

.hero_2efd {
    list-style: none;
    padding: 0;
}

.hero_2efd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_2efd li:last-child {
    border-bottom: none;
}

.photo_2824 {
    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);
}

.photo_2824 p {
    color: var(--success-color);
    margin: 0;
}

.caption-tiny-18dc {
    margin-top: 3rem;
}

.highlight_under_99a2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pagination-6ca0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination-6ca0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container-wood-312e {
    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);
}

.content_glass_b26c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.container-wood-312e p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.mask_cca0 {
    padding: var(--section-padding);
}

.sort-66d5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-66d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_87ed {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hidden_87ed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.panel-thick-d2a7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-3156 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.static_7737 {
    flex: 1;
}

.light_d696 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.alert-bright-ae04 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.card_01bd {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_pressed_a099 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module_pressed_a099:last-child {
    border-bottom: none;
}

/* Comparison Section */
.backdrop_e35c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.content-d5ba {
    padding: var(--section-padding);
}

.popup-north-5d24 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.bottom_1377 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom_1377 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_b447 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_8009, .image-c67d, .section-plasma-ed72 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.section-plasma-ed72 {
    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 */
.avatar_basic_4b0c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-672f {
    margin: 2rem 0;
}

.icon-up-cf9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-623a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-west-9a18 {
    list-style: none;
    padding: 0;
}

.header-west-9a18 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-west-9a18 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.header-west-9a18 li:last-child {
    border-bottom: none;
}

.plasma_d3a2 {
    text-align: center;
    margin-top: 2rem;
}

.last-9983 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.pagination-selected-d66a {
    padding: var(--section-padding);
}

.shade-d534 {
    margin: 2rem 0;
}

.grid-pink-8ff9 {
    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) {
    .grid-pink-8ff9 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid-pink-8ff9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-under-dee4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hot_f97b {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.purple_88bc {
    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;
}

.highlight_3d74 {
    flex: 1;
}

.filter-5be1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.content_next_061e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.row-up-993e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.item_9f4b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .item_9f4b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.first-3741 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.first-3741:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-3741 .down-94fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.first-3741 .mask_8463 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video-5a6b {
    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);
}

.list_short_8a67 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.list_short_8a67 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.sort-pink-239e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .sort-pink-239e {
        grid-template-columns: 1fr 1fr;
    }
}

.down_3956 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide_cb39 {
    margin-bottom: 1.5rem;
}

.wide_cb39 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wide_cb39 input,
.wide_cb39 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;
}

.wide_cb39 input:focus,
.wide_cb39 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.prev_3612 {
    width: 100%;
    margin-top: 1rem;
}

.widget-white-eb63 {
    display: flex;
    align-items: center;
}

.modal_98ff {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.list-b0b1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.white_a2fc {
    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;
}

.pagination_0cb8 {
    color: var(--text-gray);
}

.east-e224 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.in_0819 {
    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);
}

.in_0819 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.list-fc61 {
    margin-top: 3rem;
}

.notice_4a00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.card_hot_51a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_7fd8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.east_86de {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.east_86de:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hard-3aba {
    padding: var(--section-padding);
}

.pagination_small_343a {
    margin: 2rem 0;
}

.surface_b745 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tabs_baf9 {
    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;
}

.tabs_baf9:hover, .tabs_baf9.fn-active-9277 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard_9773 {
    display: none;
}

.hard_9773.fn-active-9277 {
    display: block;
}

.title-small-0915 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_e206 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.highlight-e840 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.highlight-e840 ul {
    list-style: none;
    padding: 0;
}

.highlight-e840 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.highlight-e840 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.description_action_d9ed {
    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 */
.huge-a90b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_a316 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-out-b481 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.over-5e64 {
    color: var(--accent-color);
    margin: 0;
}

.bright_32f8 {
    display: flex;
    gap: 1.5rem;
}

.first_599a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.glass-bbdb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hard-a78a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hard-a78a.filter-gold-34af {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hard-a78a.widget_eabd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hard-a78a.progress_45bb {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bottom-0bfb {
    margin-top: 2rem;
}

.tooltip-pro-f3d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.background-8c48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .background-8c48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-7c43 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.chip_lower_77c7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-next-4d34 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.clean_428f {
    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 */
.pattern_mini_ccd5 {
    padding: var(--section-padding);
}

.badge_up_e717 {
    margin: 2rem 0;
}

.red_f1b7 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.stale-6ff4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.fixed-9e42 {
    list-style: none;
    padding: 0;
}

.fixed-9e42 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;
}

.fixed-9e42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.fixed-9e42 li:last-child {
    border-bottom: none;
}

.box-silver-c7a0 {
    margin: 2rem 0;
}

.sort_c744 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box-current-ab4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box-current-ab4d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.upper-8777 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected_7e48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu_last_0c83 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hover_3d22 {
    margin-top: 2rem;
}

.notification_14c3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.easy-8edb {
    list-style: none;
    padding: 0;
}

.black_98e8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.black_98e8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.black_98e8 a:hover {
    text-decoration: underline;
}

.widget-current-3349 {
    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 */
.gallery_silver_0b9a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-d383 {
    margin: 2rem 0;
}

.accordion-fff1 {
    margin-bottom: 3rem;
}

.accordion-fff1 .disabled-623a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hard_3223 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar_58eb {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.sidebar_58eb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tiny-dc37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tiny-dc37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_a2e6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.hot_c34a {
    padding: var(--section-padding);
}

.info-next-b952 {
    margin: 2rem 0;
}

.list-db8b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.heading-bronze-feab {
    overflow-x: auto;
    margin: 2rem 0;
}

.filter-tall-46a9 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hero_dynamic_552a {
    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;
}

.modal_lite_d76b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.north_41da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .north_41da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-8901 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow-8901 .alert-first-a3b4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.narrow-8901 .input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_12f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.outline-upper-1ffd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down-b46f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-b46f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-pink-41f6 {
    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;
}

.aside-pink-41f6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.wrapper_prev_3e77 {
    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);
}

.row_c69d {
    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;
}

.chip_168c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.iron-ee5a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.component-18e4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.lite_100f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frame_copper_92d5 {
    color: var(--text-white);
    font-weight: 600;
}

.static_0837 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-5ea3 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-5ea3 .component-large-3ac3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.blue_2090 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .blue_2090 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_633e {
    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);
}

.sort_633e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort_633e .down-94fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort_633e .mask_8463 {
    color: var(--text-gray);
    font-size: 1rem;
}

.focus-32eb {
    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);
}

.huge-ee56 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.huge-ee56 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.thumbnail-gas-1040 {
    margin: 2rem 0;
}

.shade-b639 {
    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);
}

.shade-b639:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.first-fabe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gallery_out_7b1e {
    flex: 1;
}

.sort_inner_1970 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-9ea5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.module_fixed_5ff0 {
    margin: 2rem 0;
}

.preview-narrow-b5aa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-narrow-b5aa .input_3bf9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.preview-narrow-b5aa .copper_105d {
    color: var(--text-gray);
    margin: 0;
}

.overlay-middle-a19a {
    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);
}

.overlay-middle-a19a .link_bronze_3854 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.media_12f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hero-ebdb {
    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;
}

.accordion_eb64 {
    flex: 1;
}

.overlay-cddc {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.input_selected_d000 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.pink-5354 {
    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_8d8d {
    flex: 1;
}

.focus_d0dd {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.tabs_upper_8b0b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.bright_a0e6 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.caption-232b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.selected-39a3 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.selected-39a3 .component-large-3ac3 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption_large_e20c {
    margin-top: 2rem;
}

.caption_large_e20c .highlight_under_99a2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.last_0daa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected-ddaa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .selected-ddaa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-ddaa .texture_plasma_cfa6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid_1d3c {
    margin: 2rem 0;
}

.widget-medium-ce27 {
    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 */
.image_wood_3721 {
    padding: var(--section-padding);
}

.hidden-purple-abd6 {
    margin-top: 1rem;
}

.info-hovered-1f7f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.info-hovered-1f7f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.info-hovered-1f7f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.pro_58b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_09dd {
    margin: 2rem 0;
}

.highlight-4c75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.banner-over-97cb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section_65ec {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.link_fast_7ae2 {
    margin: 2rem 0;
}

.easy-ad22 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.easy-ad22 .disabled-623a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_top_f04c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .section_top_f04c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface-eee4 {
    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);
}

.paper_658f {
    color: var(--text-white);
    font-weight: 600;
}

.video-fast-2071 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.link-ddc1 {
    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);
}

.link-ddc1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.menu-left-9966 {
    padding: var(--section-padding);
}

.hidden_125b {
    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;
}

.hidden_125b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.layout_motion_e1cb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout_motion_e1cb .content_glass_b26c {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_motion_e1cb .search_north_5c35 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.filter-static-5d09 {
    flex: 1;
}

.shade-black-552c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fresh_a5d7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fresh_a5d7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fresh_a5d7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.photo-fixed-4d70 {
    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);
}

.photo-fixed-4d70 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo-fixed-4d70 strong {
    color: var(--warning-color);
}

/* Slots Section */
.glass-9cf1 {
    padding: var(--section-padding);
}

.wide-7a4b {
    margin: 2rem 0;
}

/* Table Games Section */
.title_b42c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper-d162 {
    margin: 2rem 0;
}

.hidden-cool-ad74 {
    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);
}

.hidden-cool-ad74:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hidden-cool-ad74 .focus-static-597a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-cool-ad74 .layout_top_ac7e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.in_7ae6 {
    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);
}

.in_7ae6 .link_bronze_3854 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.feature_d550 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_e7d4 {
    margin: 2rem 0;
}

.iron-acd2 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-6265 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-medium-5ef4 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.component_in_c72b {
    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);
}

.component_in_c72b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.component_in_c72b.fn-active-9277 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-1ef9 {
    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);
}

.detail-cold-043e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-cold-043e strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.stale-6d31 {
    padding: var(--section-padding);
}

.form-a563 {
    margin: 2rem 0;
}

.wide_4378 {
    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);
}

.wide_4378:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .wide_4378 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bottom-652c {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.picture-motion-cd68 {
    flex: 1;
}

.fresh-16fc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.rough-5870 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.white_09d6 {
    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;
}

.gallery_924b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header-7560 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.surface_lite_c50e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero_04c5 {
    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;
}

.hero_04c5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title_f2ab {
    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);
}

.texture-fluid-53f4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture-fluid-53f4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.paragraph_liquid_6e36 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple-7313 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .simple-7313 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-7313 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_e37d {
    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;
}

.gold_e37d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.banner-gold-3988 {
    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;
}

.logo_copper_759b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.chip_4df6 {
    font-size: 2rem;
}

.modal-pink-2503 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.outer-00d8 {
    flex: 1;
}

.left-a7db {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.bronze_b872 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.narrow-c9eb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery_50ef {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.liquid-302f {
    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;
}

.image-new-16e8 {
    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;
}

.image-new-16e8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask_rough_30d5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy_7004 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_44bf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .photo_44bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_c8a5 {
    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);
}

.nav-af67 {
    color: var(--text-white);
    font-weight: 600;
}

.info_5abc {
    color: var(--accent-color);
    font-weight: 600;
}

.box-new-baab {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.box-new-baab strong {
    color: var(--accent-color);
}

/* Security Section */
.sidebar-dark-54da {
    padding: var(--section-padding);
}

/* Benefits Section */
.hidden-stone-cc64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.summary_87a1 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.element_07a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-dcb0 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.text-blue-c6c6 {
    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) {
    .text-blue-c6c6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.text-blue-c6c6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.text-blue-c6c6 .pink-5354 {
    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;
}

.text-blue-c6c6 .alert_8d8d {
    flex: 1;
}

.text-blue-c6c6 .focus_d0dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.text-blue-c6c6 .tabs_upper_8b0b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tooltip-thick-8823 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-thick-8823 .dynamic_69c2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip-thick-8823 .stale_2466 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-thick-8823 .stale_2466 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tooltip-thick-8823 .stale_2466 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.description-out-6869 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.column-3e06 {
    padding: var(--section-padding);
}

.south-b436 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .south-b436 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-9589 {
    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);
}

.border-9589:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.border-9589 .detail_9882 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-9589 .rough_b651 {
    flex: 1;
}

.border-9589 .south-e201 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-9589 .right-d531 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo-warm-94ae {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-warm-94ae .thumbnail-0fb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-warm-94ae .gallery_8d26 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.logo-warm-94ae .gallery_8d26 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);
}

.logo-warm-94ae .gallery_8d26 li:last-child {
    border-bottom: none;
}

.logo-warm-94ae .gallery_8d26 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;
}

.logo-warm-94ae .gallery_8d26 li strong {
    color: var(--text-white);
}

.mask-0cf4 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.mask-0cf4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask-0cf4 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.element-2662 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_502d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_502d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-medium-8554 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.highlight-medium-8554:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow-ba3a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-last-5c5e {
    font-size: 2rem;
}

.north-71e2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pressed-f5f6 {
    flex: 1;
}

.info_first_df22 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_first_df22 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info_first_df22 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fast-6ed0 {
    margin-top: 3rem;
}

.red_f1b7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.stale-6ff4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-9e42 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-9e42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fixed-9e42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fixed-9e42 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.orange-a201 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-f65b {
    margin: 2rem 0;
}

.slow-1dbc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slow-1dbc .disabled-623a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column_e9ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column_e9ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-tall-0e14 {
    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);
}

.form-tall-0e14:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.item-63d8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider_upper_6fb4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.iron-1fc8 {
    padding: var(--section-padding);
}

.input-outer-9c52 {
    margin: 2rem 0;
}

.feature_14a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .feature_14a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature_14a2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-red-8c38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.banner-red-8c38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider_inner_f9c0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.carousel-middle-6ebc {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.preview-active-3908 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.preview-active-3908.accordion-80cf {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.south-6ccf {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.image-2bb2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.avatar_orange_038a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom_b755 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.full_9ee1 {
    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);
}

.full_9ee1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full_9ee1 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.banner_plasma_bbe2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-small-7058 {
    margin: 2rem 0;
}

.wide_2cef {
    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) {
    .wide_2cef {
        flex-direction: column;
        gap: 1rem;
    }
}

.wide_2cef:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wide_2cef::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);
}

.middle_7bc5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.north-15d3 {
    flex: 1;
}

.section_lite_b8c4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.middle-bd62 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.middle-bd62 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_833e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action_aac5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow_0b36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .yellow_0b36 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-6f1b {
    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);
}

.title_stale_cf24 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.preview-e3df {
    flex: 1;
}

.thumbnail_south_2145 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.alert_first_f3a8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.red_f0c8 {
    margin-top: 2rem;
    text-align: center;
}

.south_0897 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.south_0897 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.button-tiny-f37d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-tiny-f37d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm-d2d3 {
    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);
}

.warm-d2d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.warm-d2d3 .main-north-f077 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-d2d3 .primary_bffc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.warm-d2d3 .tag_top_a74c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.warm-d2d3 .surface_b2af {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.smooth_5ef8 {
    padding: var(--section-padding);
}

.tiny_66b7 .hero_left_b4ab {
    flex: 1;
}

/* Promo Calendar Section */
.texture_blue_478c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-a730 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-a730 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-c28e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up_17af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.slow_c324 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outline_up_0ff2 {
    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);
}

.lower_324b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wide-8346 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.old_57d6 {
    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);
}

.old_57d6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.old_57d6 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.full_d516 {
    padding: var(--section-padding);
}

.pressed-c74c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pressed-c74c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget_warm_ca7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_332d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main-bf78 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-bf78 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid_02db {
    margin-top: 3rem;
}

.liquid_02db .red_f1b7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.liquid_02db .stale-6ff4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid_02db .fixed-9e42 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.liquid_02db .fixed-9e42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.liquid_02db .fixed-9e42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.liquid_02db .fixed-9e42 li strong {
    color: var(--warning-color);
}

.link_e4b7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link_e4b7 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.highlight-action-3909 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-41f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-41f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright-6a82 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-6a82 .disabled-623a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.media-fluid-27cf {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.complex-1443 {
    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);
}

.complex-1443:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.left_7d92 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-simple-31d3 {
    flex: 1;
}

.form-c828 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.silver-2d56 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.out-1b63 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.block-de21 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.upper_dbc3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .upper_dbc3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_7635 {
    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);
}

.container_7635:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar-huge-ee2a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_purple_fc45 {
    color: var(--text-gray);
    font-size: 1rem;
}

.list_short_8a67 {
    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);
}

.text-43d0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-43d0 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.popup-center-6c21 { 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; }
.menu-middle-821e, .avatar_ce30 { max-width:100%; height:auto; }

.wrapper-dark-9478, .inner_7250, .aside_old_402a { white-space:normal; }

.item_east_e8be,
.component_lower_20d4,
.top_47ff,
.button-tiny-f37d,
.module_fixed_5ff0,
.small-262b {
  flex-wrap:wrap;
}

[class*="grid"],
.upper_dbc3,
.feature_14a2,
.card-motion-8a2d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.west_1269 img,
.component_lower_20d4 img,
.notice-d7ec img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.simple_8cf8, .gold-bfab,
.border-wood-f707, .hero_hard_9740 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.title-center-afaf { width:100%; overflow-x:auto; }
.title-center-afaf table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.layout_ace7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .layout_ace7 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.copper_636f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wrapper_down_b8ad,
.element_large_8644,
.fast-adcc,
.smooth-f977,
.item_9f4b,
.upper_dbc3,
.feature_14a2,
.card-motion-8a2d,
.photo_7490,
.form-a563,
.layout_ace7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wrapper_down_b8ad,
  .element_large_8644,
  .fast-adcc,
  .smooth-f977,
  .item_9f4b,
  .upper_dbc3,
  .feature_14a2,
  .card-motion-8a2d,
  .photo_7490,
  .form-a563,
  .layout_ace7 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tabs-dfc8,
.first-3741,
.container_7635,
.first_8e5b,
.banner-red-8c38,
.modal-2ebf,
.wide_4378,
.copper_636f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.mask_last_6949,
.link_1813,
.slider_1505 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mask_last_6949 > *,
.link_1813 > *,
.slider_1505 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4aa5 */
.phantom-card-w5 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
