/* {$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;
}

.thick-5215 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.brown-f591 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .brown-f591 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brown-f591 {
        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 */
.rough_2a40 {
    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);
}

.breadcrumb_cda1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .breadcrumb_cda1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .logo_d210 {
        grid-column: 1;
    }
    
    .old_c627 {
        grid-column: 2;
    }
    
    .media-9c69 {
        grid-column: 3;
    }
}

.logo_d210 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo_d210:hover img {
    transform: scale(1.05);
}

/* Navigation */
.slow_d12b {
    display: none;
}

@media (min-width: 1024px) {
    .slow_d12b {
        display: block;
    }
}

/* Grouped Navigation */
.dropdown-f3eb {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.inner_d330 {
    position: relative;
}

.media-b424 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.inner_d330 .layout-pro-04f3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.layout-pro-04f3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paper_ff50 {
    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;
}

.paper_ff50:hover,
.paper_ff50.fn-active-b044 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.sort-e2f4 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .sort-e2f4 {
        display: flex;
    }
}

/* Mobile Register Button */
.old_c627 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .old_c627 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.overlay_e86a {
    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;
}

.overlay_e86a::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 */
.media-9c69 {
    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) {
    .media-9c69 {
        display: none;
    }
}

.media-9c69 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.media-9c69.fn-active-b044 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.media-9c69.fn-active-b044 span:nth-child(2) {
    opacity: 0;
}

.media-9c69.fn-active-b044 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-6b22 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sidebar-6b22.fn-active-b044 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.cool-7ba1 {
    overflow: hidden;
}

.shadow-7f63 {
    list-style: none;
    padding: 0.75rem 0;
}

.silver-44a9 {
    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;
}

.silver-44a9:hover,
.silver-44a9.fn-active-b044 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.silver-44a9.badge_42a6 {
    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;
}

.silver-44a9.badge_42a6::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Button Styles */
.hover-out-8388 {
    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;
}

.tag_8c31 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tag_8c31:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.pagination_6dd5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.pagination_6dd5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.nav_e76e {
    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;
}

.nav_e76e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.iron-34f2 {
    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;
}

.texture_1045 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.texture_1045:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.alert_e807 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.alert_e807:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.layout_a44d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.layout_a44d: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);
}

.breadcrumb_5d93 {
    font-size: 1em;
    font-weight: 700;
}

.preview_east_9c12 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tertiary_09fa {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tertiary_09fa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.description-copper-6cb1 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .description-copper-6cb1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.block_stone_c6d9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.message-easy-ea0e {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.selected_2db9 {
    margin-bottom: 2rem;
}

.media-f463 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .media-f463 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_bronze_6d25 {
    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);
}

.chip-fresh-c118 {
    font-size: 1.5rem;
}

.dirty-09fb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.fluid_50f2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fluid-64f9 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.fluid-64f9:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.red_0c84 {
    text-align: center;
    margin-bottom: 3rem;
}

.video_c35a {
    margin-bottom: 1rem;
}

.dark_d3aa {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.progress_3989 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .progress_3989 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .progress_3989.motion_e619 {
        direction: rtl;
    }
    
    .progress_3989.motion_e619 > * {
        direction: ltr;
    }
}

.surface_dirty_14de {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.surface_dirty_14de:first-child {
    margin-top: 0;
}

.hero_8137 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hot-822b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hot-822b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.aside_b98e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_b98e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-a690 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-df29 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal-motion-c313 {
    list-style: none;
}

.modal-motion-c313 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-motion-c313 li:last-child {
    border-bottom: none;
}

/* Games Features */
.article_focused_1ec1 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.wood-2ed6 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disabled-7978 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.backdrop-white-9f98 {
    margin: 2rem 0;
}

.bronze_d21e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.purple-a2a0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.silver-4e5d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.block-left-fdea {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.popup-067a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-067a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_2b40 {
    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);
}

.wide_2b40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.small_0123 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plasma_59ab {
    font-size: 1.5rem;
}

.label-8a44 {
    color: var(--accent-color);
    margin: 0;
}

.warm_c4f2 {
    list-style: none;
}

.warm_c4f2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.warm_c4f2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.selected_2861 {
    margin: 2rem 0;
}

.left-c185 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hover-hard-b465 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hover-hard-b465 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-in-1f22 {
    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);
}

.box_smooth_1c0f {
    font-size: 1.25rem;
}

.texture_south_f83e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.iron-d44c,
.preview-7f7f {
    text-align: center;
    margin: 2rem 0;
}

.nav_green_79fe,
.widget_a125 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.motion_72aa {
    margin: 2rem 0;
    text-align: center;
}

.frame-hard-a310 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.frame-hard-a310::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;
}

.small_3ea4 {
    position: relative;
    z-index: 1;
}

.feature-clean-e7a5 {
    margin-bottom: 1rem;
}

.title_0fa9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-c157 {
    margin-bottom: 3rem;
}

.rough_1a0a {
    margin-top: 3rem;
}

.gradient_e146 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gradient_e146 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_e146 .active_bronze_6d25 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs-a410 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-pink-31d5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.next_c4e2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.north_7068 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .north_7068 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north_7068 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.info-c8f7 {
    margin-bottom: 1rem;
}

.rough_c9b9 img {
    margin-bottom: 1rem;
}

.rough-44b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_fast_b8a4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.warm_8ea7 {
    list-style: none;
}

.warm_8ea7 li {
    margin-bottom: 0.5rem;
}

.warm_8ea7 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.warm_8ea7 a:hover {
    color: var(--accent-color);
}

.pro-e36c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.label_513e {
    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);
}

.label_513e:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.image-next-2aa5 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.image-next-2aa5 p {
    margin-bottom: 0.25rem;
}

.pagination-top-6028 {
    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) {
    .pagination-top-6028 {
        flex-direction: row;
    }
}

.message-1bb4 {
    text-align: center;
}

@media (min-width: 768px) {
    .message-1bb4 {
        text-align: left;
    }
}

.message-1bb4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_d1ee {
    font-size: 0.75rem !important;
}

.shadow_light_a817 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hot-aa2f {
    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);
    }
}

.notification_dim_f062 {
    animation: fadeInUp 0.6s ease-out;
}

.shadow_clean_6b09 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.iron_b346 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_b346 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.frame-1608 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-1608 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_top_2ac8 {
    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);
}

.backdrop_top_2ac8 .disabled-7978 {
    font-size: 1.25rem;
}

.backdrop_top_2ac8 .status_advanced_d0f1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.photo-hard-ae39 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo-hard-ae39 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solid_4242 {
    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);
}

.solid_4242:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_tiny_6303 {
    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);
}

.secondary-west-53a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pattern_active_d0dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_fixed_f924 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_f521 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_f521 .status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_f521 .element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-6541 {
    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);
}

.avatar_5b64 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.avatar_5b64 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.avatar_5b64 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tall_a113 {
    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);
}

.aside_00e9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel_green_3117 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.carousel_green_3117 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.carousel_green_3117 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);
}

.carousel_green_3117 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.carousel_green_3117 input::placeholder {
    color: var(--text-muted);
}

.slider_caff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected_0545 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.selected_0545 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.box-a783 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.box-a783:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hover-hard-b465 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-hard-b465 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-in-1f22 {
    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);
}

.disabled-in-1f22 .box_smooth_1c0f {
    font-size: 1.25rem;
}

.disabled-in-1f22 .texture_south_f83e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.fast_c67b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_left_616d {
    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);
}

.card_left_616d .disabled-7978 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_left_616d .status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_left_616d .element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_2b5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-gas-bc7e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-gas-bc7e .current-0552 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-gas-bc7e .fixed-ad3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-a533 {
    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);
}

.focus_6603 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus_6603 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-b0fa {
    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);
}

.dynamic-b0fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-7372 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hover-a606 {
    flex: 1;
}

.mask-thick-d946 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.steel-d8a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.out_52ac {
    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);
}

.out_52ac:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.action-6b28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-6b28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stone_06b1 {
    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);
}

.stone_06b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion-4213 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_a98f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label_ad7a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gold_62e6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image-c38a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-dim-456d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-d553 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic-d553 .column_5c7e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-d553 .background_lite_7810 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-58e3 {
    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);
}

.hot_7b3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-c2e7 {
    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);
}

.wrapper-c2e7 .disabled-7978 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-c2e7 .status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper-c2e7 .element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-slow-a6ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-slow-a6ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-lite-ebc6 {
    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);
}

.photo-lite-ebc6:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.east_52b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_52b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-a031 {
    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);
}

.alert-a031:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner-f73e {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic-6457 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.purple-a2a0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hidden_3169 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notification_green_0f3f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-gold-5bb9 {
    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);
}

.description-gold-5bb9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-0aff {
    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);
}

.stone_9362 {
    flex: 1;
}

.upper_d2ec {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.picture_dynamic_4dec {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.dropdown_simple_7bfe {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass-58e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-outer-40c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-outer-40c2 .current-0552 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery-outer-40c2 .fixed-ad3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-7f7f {
    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);
}

.bright_b279 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright_b279 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.basic_881d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic_881d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_active_a54e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_active_a54e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-dim-dd1d {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-blue-96fc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay-slow-0fec {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic_446d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-new-e289 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_3ce5 {
    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);
}

.paragraph_silver_63f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-11c1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_prev_ed68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_7b3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-c2e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wrapper-c2e7 .status_71e8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-c2e7 .element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-0966 {
    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);
}

.in-0dc5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in-0dc5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in-0dc5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_5ef9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outer_5ef9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_dark_c0ff {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stone-bffa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern_3aea {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.message-hard-63da {
    padding: 1.5rem;
}

.thick_0e87 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cool_d90a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool_d90a 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;
}

.cool_d90a li:last-child {
    border-bottom: none;
}

.cool_d90a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.avatar_e541 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_e541 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-ff50 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message-ff50:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_in_3913 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_light_4a1d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.small-7b78 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.layout-147a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gradient-9fbe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_e969 {
    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);
}

.disabled-0320 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_3db9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-a7f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_gas_73b6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.slow_0d69 {
    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);
}

.red_8e41 {
    text-align: center;
}

.layout-3da1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_1fb7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.overlay_53d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_ff4e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_ff4e .status_71e8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_ff4e .element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-north-44d5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-north-44d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-north-44d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-d1e2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood-d1e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-lite-3a22 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.logo_4701 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status_71e8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notice_selected_7d85 {
    padding: 1.5rem;
}

.element-static-ee73 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.narrow_6355 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.narrow_6355 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;
}

.narrow_6355 li:last-child {
    border-bottom: none;
}

.narrow_6355 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.row-59c1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pagination-liquid-3648 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination-liquid-3648:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-24c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_silver_fe2f {
    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);
}

.pattern_tiny_6303 {
    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;
}

.secondary-west-53a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_active_d0dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_d53b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_f811 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-dim-669f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-bronze-e48d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-d730 {
    display: flex;
    gap: 1rem;
}

.content-d730 .table-lite-ce40 {
    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;
}

.message_left_6b7f {
    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);
}

.motion_507a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.border-731f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border-731f 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;
}

.border-731f li:last-child {
    border-bottom: none;
}

.border-731f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.old_8d95 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_8d95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old_8d95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-84ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.first-84ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-97fc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.west_10b0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.column_5c7e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.section_in_3a47 {
    font-size: 1rem;
}

.status_left_e5af {
    padding: 1.5rem;
}

.background_lite_7810 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert_wood_58fe {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.alert_wood_58fe .red_8e41 {
    text-align: center;
}

.alert_wood_58fe .title_1fb7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.alert_wood_58fe .medium_3d6f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination_paper_160d {
    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);
}

.pagination_paper_160d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.text_1081 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_1081 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_501a {
    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);
}

.full_501a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-smooth-35ff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-e568 {
    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-1833 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-e77f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.simple-2ea0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-55fb {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner-down-178b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_dark_43c3 {
    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);
}

.element_4664 {
    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;
}

.element_4664.image_e1c3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.element_4664.background_motion_eb50 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.element_4664.modal_next_35ae {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.element_4664.north_894e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.element_4664.menu_upper_8afa {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.medium_b7ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center_98e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_ae1d {
    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);
}

.outline_cf60 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.box_2b5c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box_2b5c 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;
}

.box_2b5c li:last-child {
    border-bottom: none;
}

.box_2b5c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.steel-24c3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .steel-24c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steel-24c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused_dd8d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focused_dd8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused_dd8d.table_basic_4f1c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .focused_dd8d.table_basic_4f1c {
        grid-column: span 3;
    }
}

.advanced-e954 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.focused_dd8d.table_basic_4f1c .advanced-e954 {
    background: rgba(6, 182, 212, 0.1);
}

.popup_8604 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.message-outer-73ff {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.focused_dd8d.table_basic_4f1c .message-outer-73ff {
    color: var(--info-color);
}

.orange_7de4 {
    padding: 1.5rem;
    text-align: center;
}

.full-4330 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.focused_dd8d.table_basic_4f1c .full-4330 {
    color: var(--info-color);
}

.easy-c36d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.progress-7483 {
    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 */
.mask-cold-d700 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-cold-d700 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark_db4d {
    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);
}

.dark_db4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-65ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_left_616d {
    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);
}

.box_smooth_1c0f {
    font-size: 2rem;
    flex-shrink: 0;
}

.section-middle-4693 {
    flex: 1;
}

.left-c185 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_tiny_d1d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-4937 {
    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);
}

.sidebar_yellow_d2dc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.box_7847 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hot-aa2f {
    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);
}

.outline-short-356a {
  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);
}

.outline-short-356a .red_8e41 {
    text-align: center;
}

.outline-short-356a .layout-3da1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.outline-short-356a .title_1fb7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.link_2f39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-aa15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-f3d5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link-ae26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-975c {
    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);
}

.warm-a40b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_paper_8cd8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-ec9a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .blue-ec9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blue-ec9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-top-f1e8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout-top-f1e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-action-a375 {
    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);
}

.list-eb88 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_cf9a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.in_9a2e {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.in_9a2e.wood_364f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.in_9a2e.progress-fresh-4a22 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.in_9a2e.status-lower-5dcc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.basic_1981 {
    padding: 1.5rem;
    text-align: center;
}

.complex-b7ed {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_clean_3de8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.widget_clean_3de8 .bright-1cf6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.link_plasma_f707 {
    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);
}

.link_plasma_f707:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.logo_44e3 {
  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-fast-b51d {
    text-align: center;
}

.banner-fast-b51d .layout-3da1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.banner-fast-b51d .title_1fb7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.box-mini-8484 { text-align: center; }
.section-ce27 { text-align: left; }
.steel-e128 { text-align: right; }

.yellow-814a { margin-bottom: 0; }
.slow-7b23 { margin-bottom: 0.5rem; }
.status_in_b544 { margin-bottom: 1rem; }
.orange_f354 { margin-bottom: 1.5rem; }
.article-cab3 { margin-bottom: 2rem; }

.slow_cea9 { margin-top: 0; }
.active_4690 { margin-top: 0.5rem; }
.picture-red-8944 { margin-top: 1rem; }
.description-light-0a33 { margin-top: 1.5rem; }
.icon_e27b { margin-top: 2rem; }

.fn-hidden-b044 { display: none; }
.fn-visible-b044 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tertiary_09fa {
        padding: 6rem 0 3rem;
    }
    
    .description-copper-6cb1 {
        text-align: center;
    }
    
    .progress_3989 {
        text-align: center;
    }
    
    .media-f463 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .rough_2a40,
    .sidebar-6b22,
    .frame-hard-a310,
    .next_c4e2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tertiary_09fa {
        background: none;
    }
}

/* Providers Section */
.alert-green-0bf9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-2454 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-2454 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-2454 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex_f7c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex_f7c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block-yellow-37b3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.progress_e3ea {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mini_b487 {
    list-style: none;
    padding: 0;
}

.mini_b487 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mini_b487 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.highlight_north_dcd3 {
    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);
}

.highlight_north_dcd3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.red-5c12 {
    padding: var(--section-padding);
}

.overlay-glass-a956 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-glass-a956 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_1710 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.liquid_1710:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.title-stale-e70e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.preview-dim-b0af {
    display: flex;
    flex-direction: column;
}

.down-2ec3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.small_2f91 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.huge_b634 {
    color: var(--accent-color);
}

.article_b49e {
    font-size: 1.25rem;
}

.slider_5409 {
    margin-bottom: 1rem;
}

.slider_5409 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.warm_f1f3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.description_small_bbd5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.red_8e41 {
    text-align: center;
}

.layout-3da1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_1fb7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.panel-over-7e98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-f8f7 {
    margin: 2rem 0;
}

.nav-dd89 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.nav-dd89 .disabled-7978 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar_static_8ded {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.widget_down_03cc {
    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;
}

.widget_down_03cc:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.liquid_e536 {
    font-size: 2rem;
}

.disabled_red_a617 {
    display: flex;
    flex-direction: column;
}

.left-a381 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo_bronze_80a3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.caption-lite-7a49 {
    padding: var(--section-padding);
}

.wrapper-80c2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper-80c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-80c2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_orange_5aa8 {
    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);
}

.header_orange_5aa8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header_orange_5aa8 .layout-3da1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.header_orange_5aa8 .title_1fb7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.header_orange_5aa8 .paragraph-north-a4e2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.sidebar_complex_0361 {
    margin-top: 4rem;
}

.progress_6685 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.surface-action-b2d8 {
    overflow-x: auto;
}

.description-selected-9fd0 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.description-selected-9fd0 thead {
    background: var(--accent-color);
}

.description-selected-9fd0 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.description-selected-9fd0 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.description-selected-9fd0 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.description-selected-9fd0 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.list_03b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_903e {
    max-width: 900px;
    margin: 0 auto;
}

.copper-51ae {
    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);
}

.copper-51ae:hover {
    border-color: var(--accent-color);
}

.article_91c3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.article_91c3 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.plasma_bbfa {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.copper-51ae.fn-active-b044 .plasma_bbfa {
    transform: rotate(45deg);
}

.notice_slow_18a7 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.copper-51ae.fn-active-b044 .notice_slow_18a7 {
    max-height: 1000px;
}

.notice_slow_18a7 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.medium-19ab {
    padding: var(--section-padding);
}

.avatar_5b64 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.pressed_8be2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_steel_7bd2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_steel_7bd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag_bottom_02f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_32fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sort_wood_22a6 {
    font-size: 2rem;
}

.image_c809 {
    color: var(--text-white);
    margin: 0;
}

.modal-2b7e {
    list-style: none;
    padding: 0;
}

.modal-2b7e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-2b7e li:last-child {
    border-bottom: none;
}

.message_68cb {
    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);
}

.message_68cb p {
    color: var(--success-color);
    margin: 0;
}

.card-dirty-de4d {
    margin-top: 3rem;
}

.motion_507a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-9938 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-9938 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-3a3c {
    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);
}

.accent_25ad {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.button-3a3c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.search_tiny_5dff {
    padding: var(--section-padding);
}

.border_adb4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_adb4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-4461 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red-4461:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dark_cf51 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status_focused_ceaf {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.video_full_971a {
    flex: 1;
}

.highlight-266d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.action_342c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.picture-red-e4f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-80a3 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-80a3:last-child {
    border-bottom: none;
}

/* Comparison Section */
.stone-b04b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.secondary-eb7d {
    padding: var(--section-padding);
}

.active-2ce6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.basic_0d16 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic_0d16 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-pink-bda5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_inner_efa4, .white_c94c, .shade_a48b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.shade_a48b {
    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 */
.tabs_red_7e8e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue_5e35 {
    margin: 2rem 0;
}

.next_453a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-a09c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay_795e {
    list-style: none;
    padding: 0;
}

.overlay_795e 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;
}

.overlay_795e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.overlay_795e li:last-child {
    border-bottom: none;
}

.column-3911 {
    text-align: center;
    margin-top: 2rem;
}

.lite-70cd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.shade_lite_4ac1 {
    padding: var(--section-padding);
}

.glass_4371 {
    margin: 2rem 0;
}

.active-9ff2 {
    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) {
    .active-9ff2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.active-9ff2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article-9ed1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.nav-focused-8a56 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.form-b0fb {
    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;
}

.gallery_mini_b8bf {
    flex: 1;
}

.banner-left-1f7a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module-north-e512 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pink-9f19 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.block-pressed-7b28 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .block-pressed-7b28 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.status_cool_ed7b {
    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);
}

.status_cool_ed7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status_cool_ed7b .layout-3da1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_cool_ed7b .title_1fb7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tabs-selected-c567 {
    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);
}

.box-cold-3c81 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.box-cold-3c81 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.soft_f2fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .soft_f2fc {
        grid-template-columns: 1fr 1fr;
    }
}

.notice_282b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_eb5d {
    margin-bottom: 1.5rem;
}

.slow_eb5d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slow_eb5d input,
.slow_eb5d 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;
}

.slow_eb5d input:focus,
.slow_eb5d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.secondary_0ced {
    width: 100%;
    margin-top: 1rem;
}

.easy_8512 {
    display: flex;
    align-items: center;
}

.static_a075 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.white_89b3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.hero_bbbb {
    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;
}

.image_prev_e43d {
    color: var(--text-gray);
}

.pagination-18f7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gallery_706e {
    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);
}

.gallery_706e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.white-7507 {
    margin-top: 3rem;
}

.pattern-1522 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.blue_49e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_out_7d23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.solid-3891 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solid-3891:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.media-brown-daaa {
    padding: var(--section-padding);
}

.photo_north_5700 {
    margin: 2rem 0;
}

.background-9b63 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.in-6247 {
    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;
}

.in-6247:hover, .in-6247.fn-active-b044 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard-b220 {
    display: none;
}

.hard-b220.fn-active-b044 {
    display: block;
}

.pro_7d51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-rough-fc39 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row-next-a322 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.row-next-a322 ul {
    list-style: none;
    padding: 0;
}

.row-next-a322 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.row-next-a322 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thumbnail-a391 {
    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 */
.hover-475f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid_e387 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-0119 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-7ccc {
    color: var(--accent-color);
    margin: 0;
}

.pattern_d419 {
    display: flex;
    gap: 1.5rem;
}

.panel_old_6a4a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mini-b8c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.slider-b51d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider-b51d.fixed-e6d0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.slider-b51d.panel_4f63 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.slider-b51d.slow-084f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.item_9d55 {
    margin-top: 2rem;
}

.orange_2ce5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.complex_641a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .complex_641a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver-cf2c {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.modal_3925 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.table-a32f {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.backdrop-ebde {
    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 */
.block-0f21 {
    padding: var(--section-padding);
}

.pagination-stale-2339 {
    margin: 2rem 0;
}

.tag_e196 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.mask-black-e6ab {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.gradient_plasma_7a82 {
    list-style: none;
    padding: 0;
}

.gradient_plasma_7a82 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;
}

.gradient_plasma_7a82 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.gradient_plasma_7a82 li:last-child {
    border-bottom: none;
}

.border_d1b1 {
    margin: 2rem 0;
}

.hidden-6ea6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box-out-6178 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box-out-6178 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern_f1bd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-913b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-1c66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.search-bd28 {
    margin-top: 2rem;
}

.mask-thick-d946 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pink-a66a {
    list-style: none;
    padding: 0;
}

.row_black_6d21 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.row_black_6d21 a {
    color: var(--accent-color);
    text-decoration: none;
}

.row_black_6d21 a:hover {
    text-decoration: underline;
}

.banner_8692 {
    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 */
.hovered-3304 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-2de4 {
    margin: 2rem 0;
}

.video_9bf5 {
    margin-bottom: 3rem;
}

.video_9bf5 .simple-a09c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.backdrop_1308 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.header-b76d {
    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);
}

.header-b76d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.highlight_dim_5dbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .highlight_dim_5dbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in_4a15 {
    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 */
.wrapper_55fe {
    padding: var(--section-padding);
}

.nav-2039 {
    margin: 2rem 0;
}

.row-c50d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-dirty-1c2a {
    overflow-x: auto;
    margin: 2rem 0;
}

.out-6ce9 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.iron-9c69 {
    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;
}

.tooltip-7000 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.in_802c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .in_802c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-af04 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-af04 .disabled-7978 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.search-af04 .status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph-70c9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.item-4279 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-1e3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-1e3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot_36d6 {
    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;
}

.hot_36d6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.action-11ce {
    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);
}

.menu-fast-428f {
    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;
}

.fluid_5a38 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-adf4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.up-1028 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.preview-new-c5fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-simple-ddcb {
    color: var(--text-white);
    font-weight: 600;
}

.component-white-b9af {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.article_gold_7f59 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article_gold_7f59 .table-lite-ce40 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.static-8996 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .static-8996 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-036e {
    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);
}

.paragraph-036e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-036e .layout-3da1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph-036e .title_1fb7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.focus-large-5f85 {
    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);
}

.hard_7fe6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hard_7fe6 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.text-new-e289 {
    margin: 2rem 0;
}

.heading_3ce5 {
    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);
}

.heading_3ce5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.paragraph_silver_63f3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media_d71e {
    flex: 1;
}

.new-11c1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_prev_ed68 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hot_7b3c {
    margin: 2rem 0;
}

.wrapper-c2e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-c2e7 .status_71e8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.wrapper-c2e7 .element-static-ee73 {
    color: var(--text-gray);
    margin: 0;
}

.east-0966 {
    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);
}

.east-0966 .nav_green_79fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.paragraph-70c9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.static-0aff {
    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;
}

.stone_9362 {
    flex: 1;
}

.picture_dynamic_4dec {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.dropdown_simple_7bfe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.pattern_tiny_6303 {
    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;
}

.image-69e2 {
    flex: 1;
}

.secondary-west-53a4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pattern_active_d0dc {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.backdrop-dim-669f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tertiary-bronze-e48d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.content-d730 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.content-d730 .table-lite-ce40 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message_left_6b7f {
    margin-top: 2rem;
}

.message_left_6b7f .motion_507a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.last-80e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_0d69 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slow_0d69 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow_0d69 .red_8e41 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_53d0 {
    margin: 2rem 0;
}

.tooltip_ff4e {
    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 */
.content_cool_fd10 {
    padding: var(--section-padding);
}

.notice_selected_7d85 {
    margin-top: 1rem;
}

.narrow_6355 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.narrow_6355 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.narrow_6355 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.tabs-777e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-easy-8b2e {
    margin: 2rem 0;
}

.dropdown_91e7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.huge-6be0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-ed63 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.south-8529 {
    margin: 2rem 0;
}

.medium_45f8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.medium_45f8 .simple-a09c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic_0d15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dynamic_0d15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shade_cf80 {
    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);
}

.caption-64b0 {
    color: var(--text-white);
    font-weight: 600;
}

.mask-orange-5165 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.content_b1d6 {
    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);
}

.content_b1d6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.border_plasma_c9e4 {
    padding: var(--section-padding);
}

.hero_in_30ca {
    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;
}

.hero_in_30ca:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.paper_11dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paper_11dc .accent_25ad {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper_11dc .row-4d2a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.overlay-672b {
    flex: 1;
}

.content-1679 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.upper-2887 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper-2887 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.upper-2887 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.input_focused_d3fd {
    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);
}

.input_focused_d3fd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input_focused_d3fd strong {
    color: var(--warning-color);
}

/* Slots Section */
.easy-7677 {
    padding: var(--section-padding);
}

.image-c38a {
    margin: 2rem 0;
}

/* Table Games Section */
.hero_steel_d928 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-dim-456d {
    margin: 2rem 0;
}

.dynamic-d553 {
    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);
}

.dynamic-d553:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dynamic-d553 .column_5c7e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-d553 .background_lite_7810 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.down-58e3 {
    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);
}

.down-58e3 .nav_green_79fe {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.outer_ba99 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_3fb2 {
    margin: 2rem 0;
}

.breadcrumb_selected_0a42 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium_b82a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.purple_4a61 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover_solid_9ef0 {
    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);
}

.hover_solid_9ef0:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover_solid_9ef0.fn-active-b044 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_84b0 {
    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);
}

.thumbnail-8ac3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-8ac3 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.thick_cea6 {
    padding: var(--section-padding);
}

.old-b603 {
    margin: 2rem 0;
}

.active-b56e {
    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);
}

.active-b56e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .active-b56e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.stale_af5b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.gradient-purple-089f {
    flex: 1;
}

.info_stone_deff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.white-20f4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.icon_in_2b12 {
    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;
}

.yellow-c6d9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.backdrop_wood_c4d8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hard-49aa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask_motion_5afe {
    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;
}

.mask_motion_5afe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.popup_d10b {
    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);
}

.iron_55a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.iron_55a7 strong {
    color: var(--accent-color);
}

/* New Games Section */
.media_7cca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-cbcb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button-cbcb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button-cbcb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-d54a {
    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;
}

.banner-d54a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.item_f826 {
    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;
}

.image_41d8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.gold-1c5f {
    font-size: 2rem;
}

.info-soft-7408 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.header-fresh-8dc8 {
    flex: 1;
}

.texture-upper-3b2e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.focus_bcb6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar_783c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south_3c28 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stone_f910 {
    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;
}

.description_current_eb29 {
    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;
}

.description_current_eb29:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.thick_5480 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_ebbc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-small-0f91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .logo-small-0f91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_next_c405 {
    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);
}

.table-6e21 {
    color: var(--text-white);
    font-weight: 600;
}

.modal_outer_dd7d {
    color: var(--accent-color);
    font-weight: 600;
}

.row_9035 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.row_9035 strong {
    color: var(--accent-color);
}

/* Security Section */
.text_23fd {
    padding: var(--section-padding);
}

/* Benefits Section */
.article-easy-30bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.box_liquid_cb38 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pressed-5db3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_70b3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.under-42f9 {
    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) {
    .under-42f9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.under-42f9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.under-42f9 .pattern_tiny_6303 {
    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;
}

.under-42f9 .image-69e2 {
    flex: 1;
}

.under-42f9 .secondary-west-53a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.under-42f9 .pattern_active_d0dc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.block-4a42 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-4a42 .left-c185 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-4a42 .fast_c67b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-4a42 .fast_c67b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.block-4a42 .fast_c67b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.copper_1f5d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.in_a1fc {
    padding: var(--section-padding);
}

.old-6457 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .old-6457 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_66e8 {
    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);
}

.texture_66e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.texture_66e8 .tertiary-0c1c {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_66e8 .component-liquid-da2c {
    flex: 1;
}

.texture_66e8 .current-0552 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_66e8 .avatar-340e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent-mini-c203 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-mini-c203 .frame-thick-99a2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent-mini-c203 .block-cold-f63f {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.accent-mini-c203 .block-cold-f63f 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);
}

.accent-mini-c203 .block-cold-f63f li:last-child {
    border-bottom: none;
}

.accent-mini-c203 .block-cold-f63f 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;
}

.accent-mini-c203 .block-cold-f63f li strong {
    color: var(--text-white);
}

.simple-9c24 {
    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);
}

.simple-9c24 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple-9c24 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.nav-b03c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north-42eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .north-42eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focused_e739 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focused_e739:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label-cold-3091 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-cc7f {
    font-size: 2rem;
}

.narrow-ebbe {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.iron_02b0 {
    flex: 1;
}

.advanced-dc83 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced-dc83 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.advanced-dc83 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.frame_9bc6 {
    margin-top: 3rem;
}

.tag_e196 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.mask-black-e6ab {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_plasma_7a82 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient_plasma_7a82 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.gradient_plasma_7a82 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.gradient_plasma_7a82 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.steel-a1a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_f3b6 {
    margin: 2rem 0;
}

.north_80e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.north_80e4 .simple-a09c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_6471 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black_6471 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tabs-bottom-871e {
    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);
}

.tabs-bottom-871e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.inner_0866 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solid_e96b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.description_steel_f8e6 {
    padding: var(--section-padding);
}

.lower_4211 {
    margin: 2rem 0;
}

.image_first_49e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .image_first_49e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_first_49e8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_d7c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_d7c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-4047 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.grid_pro_3a52 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.table-steel-dbed {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table-steel-dbed.fresh_307f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.black_aa1a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.backdrop-out-bdbc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.black-712a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-f661 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.popup_steel_f63a {
    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);
}

.popup_steel_f63a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup_steel_f63a strong {
    color: var(--accent-color);
}

/* Update Log Section */
.video_basic_b910 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_58ce {
    margin: 2rem 0;
}

.aside-easy-2971 {
    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) {
    .aside-easy-2971 {
        flex-direction: column;
        gap: 1rem;
    }
}

.aside-easy-2971:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.aside-easy-2971::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);
}

.down-5c8d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.huge_e23b {
    flex: 1;
}

.form-top-3c03 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.primary_easy_1061 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary_easy_1061 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.background-3862 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-4c02 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content_hard_fb7f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .content_hard_fb7f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-purple-a715 {
    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);
}

.banner-9460 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.frame-d1e2 {
    flex: 1;
}

.active_3bbf {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.outline_liquid_f6e6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.container_old_eb83 {
    margin-top: 2rem;
    text-align: center;
}

.button_0859 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button_0859 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.text_1081 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_1081 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_501a {
    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);
}

.full_501a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.full_501a .video_in_3913 {
    font-size: 2rem;
    flex-shrink: 0;
}

.full_501a .module_light_4a1d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.full_501a .small-7b78 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.full_501a .layout-147a {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.yellow-11ef {
    padding: var(--section-padding);
}

.hard-e568 .message_fluid_2221 {
    flex: 1;
}

/* Promo Calendar Section */
.surface-soft-8183 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-silver-42c5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-silver-42c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-69c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner_48d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.button-clean-6b39 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focused-9378 {
    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);
}

.primary-4f4f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.container-fixed-6721 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.gradient_down_611d {
    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);
}

.gradient_down_611d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient_down_611d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.left-bb09 {
    padding: var(--section-padding);
}

.pagination_static_8c75 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_static_8c75 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border-2bb9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_44e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shadow-old-9793 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow-old-9793 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_2170 {
    margin-top: 3rem;
}

.overlay_2170 .tag_e196 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.overlay_2170 .mask-black-e6ab {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay_2170 .gradient_plasma_7a82 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.overlay_2170 .gradient_plasma_7a82 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.overlay_2170 .gradient_plasma_7a82 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.overlay_2170 .gradient_plasma_7a82 li strong {
    color: var(--warning-color);
}

.black_b60f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black_b60f strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gas_96bc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_east_5f0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_east_5f0d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_soft_1bf8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_soft_1bf8 .simple-a09c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tall_f981 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accent_0529 {
    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);
}

.accent_0529:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.north-c71e {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-aebd {
    flex: 1;
}

.backdrop_complex_51a2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.card-82c0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_action_ea6d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.slow_ee53 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.center_8c3f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .center_8c3f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-right-dcf1 {
    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);
}

.message-right-dcf1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold-9524 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-east-c1f9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.box-cold-3c81 {
    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);
}

.banner_b54f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.banner_b54f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.brown-f591 { 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; }
.fluid-64f9, .hot-822b { max-width:100%; height:auto; }

.hover-out-8388, .nav_e76e, .iron-34f2 { white-space:normal; }

.description-copper-6cb1,
.progress_3989,
.mask-cold-d700,
.text_1081,
.hot_7b3c,
.blue-ec9a {
  flex-wrap:wrap;
}

[class*="grid"],
.center_8c3f,
.image_first_49e8,
.gradient_e146 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tertiary_09fa img,
.progress_3989 img,
.fluid_50f2 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.block_stone_c6d9, .message-easy-ea0e,
.video_c35a, .dark_d3aa {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.surface-action-b2d8 { width:100%; overflow-x:auto; }
.surface-action-b2d8 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.progress-2454 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .progress-2454 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.complex_f7c2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wrapper-80c2,
.message-dim-f4e4,
.in-4516,
.texture-b9ed,
.block-pressed-7b28,
.center_8c3f,
.image_first_49e8,
.gradient_e146,
.logo_44e3,
.old-b603,
.progress-2454 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wrapper-80c2,
  .message-dim-f4e4,
  .in-4516,
  .texture-b9ed,
  .block-pressed-7b28,
  .center_8c3f,
  .image_first_49e8,
  .gradient_e146,
  .logo_44e3,
  .old-b603,
  .progress-2454 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.header_orange_5aa8,
.status_cool_ed7b,
.message-right-dcf1,
.active_bronze_6d25,
.last_d7c1,
.banner-fast-b51d,
.active-b56e,
.complex_f7c2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.secondary_top_8477,
.small-571f,
.sort_easy_4d1b {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.secondary_top_8477 > *,
.small-571f > *,
.sort_easy_4d1b > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d778 */
.promo-block-l2 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
