/* {$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;
}

.plasma_a526 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.thumbnail-b228 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .thumbnail-b228 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .thumbnail-b228 {
        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 */
.carousel-pressed-f4fb {
    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);
}

.north_0fb3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .north_0fb3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .card_easy_df72 {
        grid-column: 1;
    }
    
    .shadow-next-5d1c {
        grid-column: 2;
    }
    
    .first_b15c {
        grid-column: 3;
    }
}

.card_easy_df72 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.card_easy_df72:hover img {
    transform: scale(1.05);
}

/* Navigation */
.solid-3d04 {
    display: none;
}

@media (min-width: 1024px) {
    .solid-3d04 {
        display: block;
    }
}

/* Grouped Navigation */
.background-short-89fd {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.block-west-8d6e {
    position: relative;
}

.grid-dirty-382a {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.block-west-8d6e .dropdown_b04a {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.dropdown_b04a {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.gradient-16e3 {
    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;
}

.gradient-16e3:hover,
.gradient-16e3.fn-active-5e55 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.search_6386 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .search_6386 {
        display: flex;
    }
}

/* Mobile Register Button */
.shadow-next-5d1c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .shadow-next-5d1c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.alert_simple_1895 {
    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;
}

.alert_simple_1895::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 */
.first_b15c {
    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) {
    .first_b15c {
        display: none;
    }
}

.first_b15c span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.first_b15c.fn-active-5e55 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.first_b15c.fn-active-5e55 span:nth-child(2) {
    opacity: 0;
}

.first_b15c.fn-active-5e55 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.old-8a5a {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.old-8a5a.fn-active-5e55 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.article-up-816f {
    overflow: hidden;
}

.wood-93e0 {
    list-style: none;
    padding: 0.75rem 0;
}

.tiny_42de {
    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;
}

.tiny_42de:hover,
.tiny_42de.fn-active-5e55 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tiny_42de.nav-b079 {
    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;
}

.tiny_42de.nav-b079::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 */
.dynamic_3689 {
    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;
}

.pink_4134 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.pink_4134:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.gradient-bd94 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.gradient-bd94:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image_24fe {
    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;
}

.image_24fe:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.iron_e240 {
    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;
}

.detail-pink-0a29 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.detail-pink-0a29:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.filter-8012 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.filter-8012:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.paragraph_outer_522f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.paragraph_outer_522f: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);
}

.yellow-4a6c {
    font-size: 1em;
    font-weight: 700;
}

.main-out-936e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.sidebar-cf04 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.sidebar-cf04::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;
}

.heading-aafd {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .heading-aafd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.breadcrumb_6d0b {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hidden-next-d562 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.filter-8b56 {
    margin-bottom: 2rem;
}

.accent-0da5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .accent-0da5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-smooth-6edc {
    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);
}

.row_current_8e1d {
    font-size: 1.5rem;
}

.simple_061a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.label-new-000a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-be98 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.notification-be98:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.thumbnail_1d43 {
    text-align: center;
    margin-bottom: 3rem;
}

.tag-light-1e4e {
    margin-bottom: 1rem;
}

.logo_slow_3af6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.logo-2558 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .logo-2558 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .logo-2558.tooltip_e8da {
        direction: rtl;
    }
    
    .logo-2558.tooltip_e8da > * {
        direction: ltr;
    }
}

.menu-5298 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.menu-5298:first-child {
    margin-top: 0;
}

.pagination_action_e8a7 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.notification_e33d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.notification_e33d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.center_0276 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_0276 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_fc05 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list-2ce7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture_rough_2a6b {
    list-style: none;
}

.texture_rough_2a6b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.texture_rough_2a6b li:last-child {
    border-bottom: none;
}

/* Games Features */
.solid-a95e {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.notice-58be {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.north-8975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.title_brown_6dae {
    margin: 2rem 0;
}

.picture_d614 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hot_b111 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.detail-5d7b {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.wide_c189 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pattern-right-6ef9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-right-6ef9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_gold_9331 {
    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);
}

.widget_gold_9331:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_2fea {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.media-plasma-67e0 {
    font-size: 1.5rem;
}

.column-complex-ae56 {
    color: var(--accent-color);
    margin: 0;
}

.breadcrumb_right_c8af {
    list-style: none;
}

.breadcrumb_right_c8af li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.breadcrumb_right_c8af li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.tertiary_down_4813 {
    margin: 2rem 0;
}

.alert_outer_deed {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tag-7845 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tag-7845 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-last-070e {
    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);
}

.complex_dada {
    font-size: 1.25rem;
}

.background_top_5254 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.module-black-3050,
.heading_fb40 {
    text-align: center;
    margin: 2rem 0;
}

.highlight_eb31,
.component-5e67 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.highlight_5d1b {
    margin: 2rem 0;
    text-align: center;
}

.shadow_full_2c92 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shadow_full_2c92::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;
}

.tertiary_e036 {
    position: relative;
    z-index: 1;
}

.wrapper-7637 {
    margin-bottom: 1rem;
}

.caption_active_86ca {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-large-30e2 {
    margin-bottom: 3rem;
}

.text-slow-f635 {
    margin-top: 3rem;
}

.dynamic_458d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dynamic_458d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_458d .paragraph-smooth-6edc {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_ef8e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_slow_e335 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.bright-6231 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.surface_99da {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .surface_99da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface_99da {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.module_44e2 {
    margin-bottom: 1rem;
}

.label_c313 img {
    margin-bottom: 1rem;
}

.alert-huge-630e {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-clean-2e9d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.overlay_c8f6 {
    list-style: none;
}

.overlay_c8f6 li {
    margin-bottom: 0.5rem;
}

.overlay_c8f6 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.overlay_c8f6 a:hover {
    color: var(--accent-color);
}

.accent-9f53 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disabled-f3a0 {
    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);
}

.disabled-f3a0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.media-c0d0 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.media-c0d0 p {
    margin-bottom: 0.25rem;
}

.element-under-5dae {
    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) {
    .element-under-5dae {
        flex-direction: row;
    }
}

.button_ddaf {
    text-align: center;
}

@media (min-width: 768px) {
    .button_ddaf {
        text-align: left;
    }
}

.button_ddaf p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.progress-6713 {
    font-size: 0.75rem !important;
}

.block-5997 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter_hard_ed76 {
    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);
    }
}

.button-e4ce {
    animation: fadeInUp 0.6s ease-out;
}

.short_3f16 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tag_7f7c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_7f7c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.element_brown_07eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_brown_07eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_advanced_8ef8 {
    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);
}

.title_advanced_8ef8 .north-8975 {
    font-size: 1.25rem;
}

.title_advanced_8ef8 .main_7c06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.progress_under_c7ea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .progress_under_c7ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth_bed2 {
    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);
}

.smooth_bed2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-north-0982 {
    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);
}

.thumbnail-3a44 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.full_e2b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-7f33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower_2d7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lower_2d7a .caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower_2d7a .widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_a427 {
    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);
}

.footer-bf51 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.footer-bf51 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.footer-bf51 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.heading_261d {
    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);
}

.article_up_a603 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.row_7184 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.row_7184 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row_7184 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);
}

.row_7184 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.row_7184 input::placeholder {
    color: var(--text-muted);
}

.cool_c55f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gold-1c3f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.gold-1c3f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.panel_325c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.panel_325c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tag-7845 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-7845 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-last-070e {
    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);
}

.wrapper-last-070e .complex_dada {
    font-size: 1.25rem;
}

.wrapper-last-070e .background_top_5254 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.hidden_south_bcef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_a7d3 {
    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);
}

.fixed_a7d3 .north-8975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed_a7d3 .caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_a7d3 .widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_3a37 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-a9f6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero-a9f6 .detail-paper-312d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-a9f6 .disabled-faaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_2a63 {
    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);
}

.outline_dark_bda6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline_dark_bda6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_e82d {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.short_e82d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_orange_8365 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.component-simple-e383 {
    flex: 1;
}

.right_275d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.red-9355 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert_fe06 {
    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);
}

.alert_fe06:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.description_cold_96fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_cold_96fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_center_2904 {
    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);
}

.notice_center_2904:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner-b6f2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green-9200 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.box_a175 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.background-white-9699 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-top-7d64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_5361 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_blue_2323 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_blue_2323 .background-c652 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_blue_2323 .notice-b361 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-7fad {
    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);
}

.gradient-b4d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_b17c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.link_b17c .north-8975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_b17c .caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_b17c .widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_fluid_b6d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_fluid_b6d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_ca72 {
    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);
}

.middle_ca72:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.link-6ae1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-6ae1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-green-9745 {
    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);
}

.frame-green-9745:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_orange_8c3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_next_fd23 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hot_b111 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.wrapper-a922 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.photo-next-7eaf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-4c56 {
    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);
}

.nav-4c56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_bcd9 {
    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);
}

.badge-complex-8cdc {
    flex: 1;
}

.hovered-5be5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.module-hard-9372 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal_east_a44e {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_light_7009 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_90d9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_90d9 .detail-paper-312d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fixed_90d9 .disabled-faaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_fb40 {
    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);
}

.mask-blue-d478 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-blue-d478 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.link-static-a102 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-static-a102 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-a32d {
    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);
}

.cool-a32d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_cold_0c9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium_2eac {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.avatar_paper_c44a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.stone-233e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.texture_a14d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal-d108 {
    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);
}

.progress_0590 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-688f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-ab04 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-b4d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_b17c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.link_b17c .caption_3bb3 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_b17c .widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_west_302d {
    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);
}

.column-0c45 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column-0c45 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-0c45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_7b76 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.item_7b76:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-smooth-b765 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-227a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.warm_c3b3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.lite-2166 {
    padding: 1.5rem;
}

.notification-cold-d122 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block-outer-6711 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-outer-6711 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;
}

.block-outer-6711 li:last-child {
    border-bottom: none;
}

.block-outer-6711 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.search-6065 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-6065 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-3599 {
    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);
}

.east-3599:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-full-067d {
    font-size: 2rem;
    flex-shrink: 0;
}

.light-7031 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge_white_0582 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled-outer-5db0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.purple_8075 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-paper-ba0a {
    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);
}

.notification_rough_16ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_rough_795f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.medium_c33f {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-west-edda {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.search-small-8e37 {
    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);
}

.alert-dynamic-2c2b {
    text-align: center;
}

.top-d3a5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_pro_6131 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.card-756c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_ff01 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_ff01 .caption_3bb3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info_ff01 .widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_6424 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_6424 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_6424 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_727a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full_727a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard_103e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.article-current-c83c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.caption_3bb3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.west-e3a2 {
    padding: 1.5rem;
}

.widget_last_5461 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter-bright-0f95 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-bright-0f95 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.filter-bright-0f95 li:last-child {
    border-bottom: none;
}

.filter-bright-0f95 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.panel_e77e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.picture_2eb5 {
    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);
}

.picture_2eb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_41c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_7cb1 {
    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);
}

.layout-north-0982 {
    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;
}

.thumbnail-3a44 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full_e2b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron-0fee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_complex_96f5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout-79ee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-14a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.component-hovered-025d {
    display: flex;
    gap: 1rem;
}

.component-hovered-025d .action_9919 {
    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;
}

.green_996f {
    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);
}

.hero-cool-7483 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-out-5da5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-out-5da5 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;
}

.hero-out-5da5 li:last-child {
    border-bottom: none;
}

.hero-out-5da5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.left_1a07 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .left_1a07 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .left_1a07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_5dca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bottom_5dca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass_67cc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.content_136d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.background-c652 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.picture_98b3 {
    font-size: 1rem;
}

.main-north-2d59 {
    padding: 1.5rem;
}

.notice-b361 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-clean-600e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hero-clean-600e .alert-dynamic-2c2b {
    text-align: center;
}

.hero-clean-600e .main_pro_6131 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hero-clean-600e .heading-slow-1286 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail-1c32 {
    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);
}

.thumbnail-1c32:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.list_1184 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_1184 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-ffb0 {
    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);
}

.upper-ffb0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_pink_d5f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_1bf0 {
    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);
}

.label_blue_e648 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video-fd2a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.narrow_b0e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_small_fe87 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-be25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-pressed-cb82 {
    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);
}

.selected_4d56 {
    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;
}

.selected_4d56.secondary_97b8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.selected_4d56.carousel_yellow_40fb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.selected_4d56.tooltip_b4c9 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.selected_4d56.fresh_ca1c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.selected_4d56.hero_580f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.button_6603 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite-8b5d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_148c {
    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);
}

.wrapper_west_5fab {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.layout_3a37 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_3a37 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;
}

.layout_3a37 li:last-child {
    border-bottom: none;
}

.layout_3a37 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.filter-3b62 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter-3b62 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-3b62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-next-e983 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.disabled-next-e983:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-next-e983.column-orange-0eac {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .disabled-next-e983.column-orange-0eac {
        grid-column: span 3;
    }
}

.element_small_32bb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.disabled-next-e983.column-orange-0eac .element_small_32bb {
    background: rgba(6, 182, 212, 0.1);
}

.yellow-ec27 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.texture-slow-8f86 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.disabled-next-e983.column-orange-0eac .texture-slow-8f86 {
    color: var(--info-color);
}

.highlight_cool_2c2b {
    padding: 1.5rem;
    text-align: center;
}

.card-cf1e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.disabled-next-e983.column-orange-0eac .card-cf1e {
    color: var(--info-color);
}

.pagination-5720 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.video_7d99 {
    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 */
.south_915e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_915e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_8699 {
    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_8699:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out_ddc0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_a7d3 {
    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);
}

.complex_dada {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface-over-fc9b {
    flex: 1;
}

.alert_outer_deed {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood-7b97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_thick_0811 {
    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);
}

.video-stone-d6fc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.warm_9eee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter_hard_ed76 {
    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);
}

.wide_579b {
  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);
}

.wide_579b .alert-dynamic-2c2b {
    text-align: center;
}

.wide_579b .top-d3a5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.wide_579b .main_pro_6131 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status_1950 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_f15b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-8622 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight-ed82 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-b21b {
    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);
}

.complex_d090 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.over-df42 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_49be {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .container_49be {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container_49be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-9f9b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hidden-9f9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-3c07 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.focus_b612 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail_dc1b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.steel-ff94 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steel-ff94.short_2b6b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.steel-ff94.focus_first_72ee {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.steel-ff94.button_solid_f451 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.button_2252 {
    padding: 1.5rem;
    text-align: center;
}

.shadow-0a43 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wrapper_green_88b7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wrapper_green_88b7 .east_f4f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.focus-small-a5ed {
    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);
}

.focus-small-a5ed:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gradient-motion-19c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.banner-0677 {
    text-align: center;
}

.banner-0677 .top-d3a5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.banner-0677 .main_pro_6131 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.notification_paper_315c { text-align: center; }
.advanced-00ac { text-align: left; }
.outer_8a50 { text-align: right; }

.dynamic_7d2b { margin-bottom: 0; }
.tabs-4d2a { margin-bottom: 0.5rem; }
.slider_bdec { margin-bottom: 1rem; }
.image-lite-7a4e { margin-bottom: 1.5rem; }
.basic-29ea { margin-bottom: 2rem; }

.description_34d3 { margin-top: 0; }
.modal-red-9740 { margin-top: 0.5rem; }
.wood_1e31 { margin-top: 1rem; }
.aside-cbfc { margin-top: 1.5rem; }
.accordion-e7f1 { margin-top: 2rem; }

.fn-hidden-5e55 { display: none; }
.fn-visible-5e55 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .sidebar-cf04 {
        padding: 6rem 0 3rem;
    }
    
    .heading-aafd {
        text-align: center;
    }
    
    .logo-2558 {
        text-align: center;
    }
    
    .accent-0da5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .carousel-pressed-f4fb,
    .old-8a5a,
    .shadow_full_2c92,
    .bright-6231 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .sidebar-cf04 {
        background: none;
    }
}

/* Providers Section */
.pagination-1b82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle-697f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-697f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle-697f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_7eaf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pressed_7eaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner-hard-4294 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.layout-ec88 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accordion-wood-de45 {
    list-style: none;
    padding: 0;
}

.accordion-wood-de45 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.accordion-wood-de45 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.label-green-fe4a {
    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);
}

.label-green-fe4a p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.menu_pressed_97ab {
    padding: var(--section-padding);
}

.over_0184 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over_0184 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.south-571d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.south-571d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.image-small-16c1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sort_9e11 {
    display: flex;
    flex-direction: column;
}

.avatar-old-e004 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tabs_ff68 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slow_1732 {
    color: var(--accent-color);
}

.tooltip-motion-d635 {
    font-size: 1.25rem;
}

.logo_stone_692c {
    margin-bottom: 1rem;
}

.logo_stone_692c p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.title-copper-e8d7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hover_short_5814 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.alert-dynamic-2c2b {
    text-align: center;
}

.top-d3a5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_pro_6131 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.footer-hard-3808 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-simple-025e {
    margin: 2rem 0;
}

.dynamic-aa72 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.dynamic-aa72 .north-8975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-f556 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tabs-small-4e89 {
    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;
}

.tabs-small-4e89:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_dynamic_96f3 {
    font-size: 2rem;
}

.card-994d {
    display: flex;
    flex-direction: column;
}

.module_dim_504d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.east-10c2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.full-b4d6 {
    padding: var(--section-padding);
}

.iron-6c60 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .iron-6c60 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .iron-6c60 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-dim-d1b6 {
    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);
}

.secondary-dim-d1b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary-dim-d1b6 .top-d3a5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.secondary-dim-d1b6 .main_pro_6131 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.secondary-dim-d1b6 .in-8b6e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.middle_97fc {
    margin-top: 4rem;
}

.disabled-pro-fe55 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.row-first-8998 {
    overflow-x: auto;
}

.focused_ce09 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.focused_ce09 thead {
    background: var(--accent-color);
}

.focused_ce09 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.focused_ce09 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_ce09 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.focused_ce09 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.accent-e958 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft-a3a2 {
    max-width: 900px;
    margin: 0 auto;
}

.texture_fd76 {
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.texture_fd76:hover {
    border-color: var(--accent-color);
}

.module_inner_856c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.module_inner_856c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.sort_red_926a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.texture_fd76.fn-active-5e55 .sort_red_926a {
    transform: rotate(45deg);
}

.header_f778 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.texture_fd76.fn-active-5e55 .header_f778 {
    max-height: 1000px;
}

.header_f778 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.avatar_ebde {
    padding: var(--section-padding);
}

.footer-bf51 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.article_easy_43e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_1c6b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current_1c6b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-4ae8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_south_f16f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.title_slow_db1c {
    font-size: 2rem;
}

.banner-95c0 {
    color: var(--text-white);
    margin: 0;
}

.popup-glass-91cb {
    list-style: none;
    padding: 0;
}

.popup-glass-91cb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-glass-91cb li:last-child {
    border-bottom: none;
}

.mask_d51c {
    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);
}

.mask_d51c p {
    color: var(--success-color);
    margin: 0;
}

.wide-e9fe {
    margin-top: 3rem;
}

.hero-cool-7483 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature_e9ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature_e9ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-b43f {
    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);
}

.disabled-next-ab78 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown-b43f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.mask-easy-9b72 {
    padding: var(--section-padding);
}

.heading_smooth_5408 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_smooth_5408 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solid_7ba8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.solid_7ba8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.button_4548 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-smooth-8870 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.east-df0e {
    flex: 1;
}

.progress-simple-d74e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.right-8979 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.block_f12f {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-a795 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-a795:last-child {
    border-bottom: none;
}

/* Comparison Section */
.active-cold-6c23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.simple-00b8 {
    padding: var(--section-padding);
}

.container-soft-4d26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.glass_da43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_da43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_static_c380 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-green-1aa5, .layout_liquid_8bb0, .label_b478 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.label_b478 {
    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 */
.hot_c217 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_focused_42ee {
    margin: 2rem 0;
}

.pink-ca2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_gold_18bf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.list_wide_1169 {
    list-style: none;
    padding: 0;
}

.list_wide_1169 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;
}

.list_wide_1169 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.list_wide_1169 li:last-child {
    border-bottom: none;
}

.active-left-a086 {
    text-align: center;
    margin-top: 2rem;
}

.prev_d2d6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.in-5c61 {
    padding: var(--section-padding);
}

.message-fc20 {
    margin: 2rem 0;
}

.selected-a707 {
    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) {
    .selected-a707 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.selected-a707:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mask_e274 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.summary-48ef {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.caption_iron_9fbf {
    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;
}

.link_009e {
    flex: 1;
}

.main_large_a28c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.fixed_5263 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider_beca {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.in-a9f2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .in-a9f2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.wood_7035 {
    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);
}

.wood_7035:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wood_7035 .top-d3a5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wood_7035 .main_pro_6131 {
    color: var(--text-gray);
    font-size: 1rem;
}

.aside-acd2 {
    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);
}

.in_a0ac {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.in_a0ac strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.next-f6c0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .next-f6c0 {
        grid-template-columns: 1fr 1fr;
    }
}

.tall_8077 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_4dec {
    margin-bottom: 1.5rem;
}

.outer_4dec label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.outer_4dec input,
.outer_4dec 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;
}

.outer_4dec input:focus,
.outer_4dec select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hard_eb0d {
    width: 100%;
    margin-top: 1rem;
}

.tall-5856 {
    display: flex;
    align-items: center;
}

.action-4cf8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.frame_fast_728b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.yellow_00fa {
    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;
}

.panel-motion-ed2a {
    color: var(--text-gray);
}

.next-c3b5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.progress-5b9e {
    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);
}

.progress-5b9e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.blue_f5d2 {
    margin-top: 3rem;
}

.slider_a5f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hidden_pink_6db4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-static-6e51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.notification-f00c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-f00c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.paragraph_d1f4 {
    padding: var(--section-padding);
}

.search_05fc {
    margin: 2rem 0;
}

.first-bb55 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bottom_359b {
    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;
}

.bottom_359b:hover, .bottom_359b.fn-active-5e55 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.popup-95d4 {
    display: none;
}

.popup-95d4.fn-active-5e55 {
    display: block;
}

.frame_2781 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-4be7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip-68db h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tooltip-68db ul {
    list-style: none;
    padding: 0;
}

.tooltip-68db ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tooltip-68db ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.block-next-2f50 {
    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 */
.element-83ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper-e7d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-b82d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.info_0cc7 {
    color: var(--accent-color);
    margin: 0;
}

.tertiary_hovered_f7af {
    display: flex;
    gap: 1.5rem;
}

.new-3c26 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gradient-simple-02f2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.detail-rough-7e4e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.detail-rough-7e4e.over_89f5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.detail-rough-7e4e.nav-current-4ae6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.detail-rough-7e4e.thick_3bc9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.gradient_949f {
    margin-top: 2rem;
}

.narrow-87b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.silver_176b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .silver_176b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_79fd {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.feature-f91a {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.widget-narrow-991f {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hot_10db {
    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 */
.text-3f70 {
    padding: var(--section-padding);
}

.gradient-5a37 {
    margin: 2rem 0;
}

.warm_dd18 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.primary_c80d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.grid_fa23 {
    list-style: none;
    padding: 0;
}

.grid_fa23 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;
}

.grid_fa23 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.grid_fa23 li:last-child {
    border-bottom: none;
}

.card-prev-c9ac {
    margin: 2rem 0;
}

.gradient-smooth-bd76 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thumbnail_red_a72e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thumbnail_red_a72e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero_soft_58e0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy-5046 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph_8cda {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dim-ecc1 {
    margin-top: 2rem;
}

.right_275d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.video_new_f655 {
    list-style: none;
    padding: 0;
}

.info-current-8c00 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.info-current-8c00 a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-current-8c00 a:hover {
    text-decoration: underline;
}

.notice-9b2d {
    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 */
.column-south-a59c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_2e7e {
    margin: 2rem 0;
}

.shadow_black_9609 {
    margin-bottom: 3rem;
}

.shadow_black_9609 .progress_gold_18bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.backdrop_dynamic_6e61 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.text_f587 {
    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);
}

.text_f587:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.search-copper-4cbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .search-copper-4cbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-0ea5 {
    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 */
.tertiary-in-7696 {
    padding: var(--section-padding);
}

.hover_57e8 {
    margin: 2rem 0;
}

.huge_f8ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.grid-4247 {
    overflow-x: auto;
    margin: 2rem 0;
}

.outline_9d41 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.west_b4f8 {
    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;
}

.plasma-ccf8 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.soft_2e2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .soft_2e2d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-1863 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-1863 .north-8975 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze-1863 .caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-ea61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.notice-b86c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-2d10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-2d10 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_1c75 {
    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;
}

.overlay_1c75:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature_outer_6432 {
    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);
}

.footer-fixed-7e8f {
    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;
}

.popup_206f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_84d2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.sort_south_0741 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.badge-1913 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media-5ba3 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper-b19c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button_complex_3e47 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button_complex_3e47 .action_9919 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hero-5985 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-5985 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_e900 {
    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);
}

.accent_e900:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_e900 .top-d3a5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_e900 .main_pro_6131 {
    color: var(--text-gray);
    font-size: 1rem;
}

.summary_silver_7f0d {
    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);
}

.warm_1ae1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.warm_1ae1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.texture_a14d {
    margin: 2rem 0;
}

.modal-d108 {
    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);
}

.modal-d108:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.progress_0590 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail_dim_2e6f {
    flex: 1;
}

.status-688f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-ab04 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gradient-b4d3 {
    margin: 2rem 0;
}

.link_b17c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_b17c .caption_3bb3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.link_b17c .widget_last_5461 {
    color: var(--text-gray);
    margin: 0;
}

.notice_west_302d {
    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);
}

.notice_west_302d .highlight_eb31 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.dim-ea61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.easy_bcd9 {
    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;
}

.badge-complex-8cdc {
    flex: 1;
}

.module-hard-9372 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.modal_east_a44e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.layout-north-0982 {
    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;
}

.easy-9740 {
    flex: 1;
}

.thumbnail-3a44 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.full_e2b6 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.layout-79ee {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.grid-14a6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.component-hovered-025d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.component-hovered-025d .action_9919 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.green_996f {
    margin-top: 2rem;
}

.green_996f .hero-cool-7483 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.layout-lite-9534 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-small-8e37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search-small-8e37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-small-8e37 .alert-dynamic-2c2b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-756c {
    margin: 2rem 0;
}

.info_ff01 {
    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 */
.banner_full_bae3 {
    padding: var(--section-padding);
}

.west-e3a2 {
    margin-top: 1rem;
}

.filter-bright-0f95 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.filter-bright-0f95 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.filter-bright-0f95 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.glass_b333 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_dc71 {
    margin: 2rem 0;
}

.old_e49e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.pink_d473 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mask-pressed-26b7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.status_inner_2173 {
    margin: 2rem 0;
}

.fast-d9fc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.fast-d9fc .progress_gold_18bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow-39eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slow-39eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-medium-d316 {
    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);
}

.primary-lower-888d {
    color: var(--text-white);
    font-weight: 600;
}

.backdrop-8669 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.search-next-28f0 {
    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);
}

.search-next-28f0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.main_b2e8 {
    padding: var(--section-padding);
}

.main_soft_a65a {
    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;
}

.main_soft_a65a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.summary_4a18 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary_4a18 .disabled-next-ab78 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_4a18 .gas-7c69 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.status_f434 {
    flex: 1;
}

.overlay-easy-0f30 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nav-new-ad91 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-new-ad91 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.nav-new-ad91 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus_c261 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.focus_c261 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_c261 strong {
    color: var(--warning-color);
}

/* Slots Section */
.tabs-upper-c1f4 {
    padding: var(--section-padding);
}

.tag-top-7d64 {
    margin: 2rem 0;
}

/* Table Games Section */
.red-a324 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_5361 {
    margin: 2rem 0;
}

.description_blue_2323 {
    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);
}

.description_blue_2323:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description_blue_2323 .background-c652 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_blue_2323 .notice-b361 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tag-7fad {
    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);
}

.tag-7fad .highlight_eb31 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.wide-5ae5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_0d19 {
    margin: 2rem 0;
}

.liquid-7eef {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-lite-187e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight-mini-718d {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pattern-fast-72fa {
    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);
}

.pattern-fast-72fa:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pattern-fast-72fa.fn-active-5e55 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_0964 {
    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);
}

.layout_e700 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_e700 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.form_9326 {
    padding: var(--section-padding);
}

.notification-ae55 {
    margin: 2rem 0;
}

.box_dirty_d15d {
    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);
}

.box_dirty_d15d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .box_dirty_d15d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.breadcrumb_fixed_a479 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.liquid-fcf4 {
    flex: 1;
}

.wood-faf5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.content_f0f8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_dbb1 {
    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;
}

.solid-1f1e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lite-fa54 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.paper-8d5b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview_fb4b {
    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;
}

.preview_fb4b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.lower-ac9a {
    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);
}

.label_186e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.label_186e strong {
    color: var(--accent-color);
}

/* New Games Section */
.hard_21e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_04da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container_04da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container_04da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_4477 {
    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;
}

.short_4477:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-43e8 {
    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;
}

.top_4485 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.input-pink-bc18 {
    font-size: 2rem;
}

.image-black-c200 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.white-3c89 {
    flex: 1;
}

.yellow-060e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.small_993c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card_large_83f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown_a792 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cool-6aad {
    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;
}

.highlight_d219 {
    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;
}

.highlight_d219:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.texture-54e7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright_5a16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.right-57b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .right-57b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-87f8 {
    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);
}

.new_0543 {
    color: var(--text-white);
    font-weight: 600;
}

.border_fde0 {
    color: var(--accent-color);
    font-weight: 600;
}

.frame_4220 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.frame_4220 strong {
    color: var(--accent-color);
}

/* Security Section */
.box_f106 {
    padding: var(--section-padding);
}

/* Benefits Section */
.element-pressed-a2cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.accordion-slow-baaa {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.table_slow_b44a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-5347 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.item-brown-b7be {
    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) {
    .item-brown-b7be {
        flex-direction: column;
        gap: 1rem;
    }
}

.item-brown-b7be:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.item-brown-b7be .layout-north-0982 {
    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;
}

.item-brown-b7be .easy-9740 {
    flex: 1;
}

.item-brown-b7be .thumbnail-3a44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.item-brown-b7be .full_e2b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.alert_f636 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_f636 .alert_outer_deed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_f636 .hidden_south_bcef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_f636 .hidden_south_bcef li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.alert_f636 .hidden_south_bcef li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.complex-ae50 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.hover_dynamic_a152 {
    padding: var(--section-padding);
}

.item-iron-94ae {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .item-iron-94ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-9b26 {
    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);
}

.caption-9b26:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.caption-9b26 .background_df38 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-9b26 .sort_dark_d13f {
    flex: 1;
}

.caption-9b26 .detail-paper-312d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-9b26 .accordion-over-89a0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wood-2c2e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-2c2e .narrow_305d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood-2c2e .thumbnail_center_2659 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.wood-2c2e .thumbnail_center_2659 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);
}

.wood-2c2e .thumbnail_center_2659 li:last-child {
    border-bottom: none;
}

.wood-2c2e .thumbnail_center_2659 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;
}

.wood-2c2e .thumbnail_center_2659 li strong {
    color: var(--text-white);
}

.in_bb61 {
    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_bb61 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in_bb61 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.highlight_under_7799 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup-north-3ffb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .popup-north-3ffb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary-mini-f851 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.primary-mini-f851:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert-cb76 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-lite-0d36 {
    font-size: 2rem;
}

.texture_79d8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tooltip-middle-2e46 {
    flex: 1;
}

.orange_066d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orange_066d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.orange_066d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tooltip_1e58 {
    margin-top: 3rem;
}

.warm_dd18 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.primary_c80d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_fa23 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_fa23 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.grid_fa23 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.grid_fa23 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.alert_a4f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-9200 {
    margin: 2rem 0;
}

.tall-a78d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.tall-a78d .progress_gold_18bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-b767 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard-b767 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_old_13a4 {
    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);
}

.component_old_13a4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.mask-thick-cc4f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.secondary_0540 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.layout-thick-68e6 {
    padding: var(--section-padding);
}

.under-96e2 {
    margin: 2rem 0;
}

.container-wide-4495 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .container-wide-4495 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-wide-4495 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-green-f1c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-green-f1c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.next_e43c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.carousel-pressed-9d18 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.video_7f41 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video_7f41.form_7209 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.menu_1864 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.inner_529a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.content-7c43 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in_7b31 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget-e00b {
    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);
}

.widget-e00b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-e00b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.pattern-461d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border_7980 {
    margin: 2rem 0;
}

.dirty_8463 {
    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) {
    .dirty_8463 {
        flex-direction: column;
        gap: 1rem;
    }
}

.dirty_8463:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dirty_8463::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);
}

.alert_last_eee8 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.picture_acd1 {
    flex: 1;
}

.image-ee99 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tiny-06d6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny-06d6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.black_8307 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_64de {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-fa35 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-fa35 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_5f01 {
    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);
}

.focus-ff00 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-a8a0 {
    flex: 1;
}

.main_advanced_5885 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.search_bronze_ac7c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup-small-d8d9 {
    margin-top: 2rem;
    text-align: center;
}

.image_tiny_bba2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_tiny_bba2 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.list_1184 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_1184 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-ffb0 {
    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);
}

.upper-ffb0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.upper-ffb0 .wrapper-full-067d {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-ffb0 .light-7031 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.upper-ffb0 .badge_white_0582 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.upper-ffb0 .disabled-outer-5db0 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.backdrop_bebe {
    padding: var(--section-padding);
}

.lite_1bf0 .paragraph-bda9 {
    flex: 1;
}

/* Promo Calendar Section */
.module-0bc7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_d39c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_d39c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_in_86ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_7686 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.button-6cbe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-e67f {
    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);
}

.last-ef09 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component-a67e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.sort-f430 {
    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);
}

.sort-f430 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort-f430 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.modal-59db {
    padding: var(--section-padding);
}

.row-thick-3076 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-thick-3076 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption_bottom_deb5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_8d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean-30f2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-30f2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_9b68 {
    margin-top: 3rem;
}

.pressed_9b68 .warm_dd18 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pressed_9b68 .primary_c80d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pressed_9b68 .grid_fa23 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pressed_9b68 .grid_fa23 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pressed_9b68 .grid_fa23 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pressed_9b68 .grid_fa23 li strong {
    color: var(--warning-color);
}

.up-56dd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.up-56dd strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.row_104c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-24c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-24c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_bec8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_bec8 .progress_gold_18bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.disabled_07b4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.out-9fe4 {
    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);
}

.out-9fe4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link_silver_b886 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-light-23f6 {
    flex: 1;
}

.icon_new_be29 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.detail-down-6b33 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.button-dynamic-d712 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.carousel_hard_9ce4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.steel_e079 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .steel_e079 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-017e {
    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);
}

.photo-017e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.clean-6fd0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_dirty_3a54 {
    color: var(--text-gray);
    font-size: 1rem;
}

.in_a0ac {
    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);
}

.modal_short_8ea7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.modal_short_8ea7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.thumbnail-b228 { 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; }
.notification-be98, .notification_e33d { max-width:100%; height:auto; }

.dynamic_3689, .image_24fe, .iron_e240 { white-space:normal; }

.heading-aafd,
.logo-2558,
.south_915e,
.list_1184,
.gradient-b4d3,
.container_49be {
  flex-wrap:wrap;
}

[class*="grid"],
.steel_e079,
.container-wide-4495,
.dynamic_458d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.sidebar-cf04 img,
.logo-2558 img,
.label-new-000a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.breadcrumb_6d0b, .hidden-next-d562,
.tag-light-1e4e, .logo_slow_3af6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.row-first-8998 { width:100%; overflow-x:auto; }
.row-first-8998 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.middle-697f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .middle-697f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.pressed_7eaf {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.iron-6c60,
.small_b21d,
.warm_d52d,
.green-eaa6,
.in-a9f2,
.steel_e079,
.container-wide-4495,
.dynamic_458d,
.gradient-motion-19c7,
.notification-ae55,
.middle-697f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .iron-6c60,
  .small_b21d,
  .warm_d52d,
  .green-eaa6,
  .in-a9f2,
  .steel_e079,
  .container-wide-4495,
  .dynamic_458d,
  .gradient-motion-19c7,
  .notification-ae55,
  .middle-697f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.secondary-dim-d1b6,
.wood_7035,
.photo-017e,
.paragraph-smooth-6edc,
.content-green-f1c6,
.banner-0677,
.box_dirty_d15d,
.pressed_7eaf {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.wide-6233,
.element_dark_f920,
.footer-4e42 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wide-6233 > *,
.element_dark_f920 > *,
.footer-4e42 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d295 */
.widget-item-b8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
