/* {$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;
}

.chip-liquid-4384 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.heading-east-1c70 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .heading-east-1c70 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .heading-east-1c70 {
        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 */
.content_black_877f {
    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);
}

.preview-advanced-f8a4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .preview-advanced-f8a4 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .action-6963 {
        grid-column: 1;
    }
    
    .frame-a900 {
        grid-column: 2;
    }
    
    .sidebar-lite-83e1 {
        grid-column: 3;
    }
}

.action-6963 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.action-6963:hover img {
    transform: scale(1.05);
}

/* Navigation */
.texture_south_4710 {
    display: none;
}

@media (min-width: 1024px) {
    .texture_south_4710 {
        display: block;
    }
}

/* Grouped Navigation */
.accordion-313a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.link-7475 {
    position: relative;
}

.layout_pressed_16d7 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.link-7475 .hero_selected_7e3d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hero_selected_7e3d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.badge-tall-dd85 {
    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;
}

.badge-tall-dd85:hover,
.badge-tall-dd85.fn-active-2859 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.avatar-478b {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .avatar-478b {
        display: flex;
    }
}

/* Mobile Register Button */
.frame-a900 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .frame-a900 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.component-south-6cf2 {
    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;
}

.component-south-6cf2::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 */
.sidebar-lite-83e1 {
    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) {
    .sidebar-lite-83e1 {
        display: none;
    }
}

.sidebar-lite-83e1 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.sidebar-lite-83e1.fn-active-2859 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.sidebar-lite-83e1.fn-active-2859 span:nth-child(2) {
    opacity: 0;
}

.sidebar-lite-83e1.fn-active-2859 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.detail_wide_d90f {
    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;
}

.detail_wide_d90f.fn-active-2859 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.form-north-4b8a {
    overflow: hidden;
}

.soft_0c5b {
    list-style: none;
    padding: 0.75rem 0;
}

.media-cold-cc5f {
    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;
}

.media-cold-cc5f:hover,
.media-cold-cc5f.fn-active-2859 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.media-cold-cc5f.caption_light_f6d0 {
    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;
}

.media-cold-cc5f.caption_light_f6d0::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 */
.hard_e1ed {
    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;
}

.first-e685 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.first-e685:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.column-pressed-29d9 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.column-pressed-29d9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.black_df41 {
    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;
}

.black_df41:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sidebar-red-2b19 {
    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;
}

.blue_fb2b {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.blue_fb2b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs_b623 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs_b623:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.table-thick-750d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.table-thick-750d: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);
}

.nav-cb90 {
    font-size: 1em;
    font-weight: 700;
}

.button_stone_bdf1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.focused-bf41 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.focused-bf41::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;
}

.preview_8a56 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .preview_8a56 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.focus-9a26 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.main_bright_7739 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.column-south-b328 {
    margin-bottom: 2rem;
}

.copper_cb3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .copper_cb3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_2417 {
    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);
}

.gradient-iron-7b5f {
    font-size: 1.5rem;
}

.inner-a947 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.gallery_focused_a998 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-pressed-6537 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.primary-pressed-6537:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.stale_ccbf {
    text-align: center;
    margin-bottom: 3rem;
}

.chip-412f {
    margin-bottom: 1rem;
}

.pagination-dad7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.texture-rough-d80a {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .texture-rough-d80a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .texture-rough-d80a.card-c465 {
        direction: rtl;
    }
    
    .texture-rough-d80a.card-c465 > * {
        direction: ltr;
    }
}

.shade-narrow-44ba {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.shade-narrow-44ba:first-child {
    margin-top: 0;
}

.background_85a5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal_fluid_fb5e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.modal_fluid_fb5e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.row_6d4e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_6d4e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_north_a2ec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-static-4a9c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tabs_6187 {
    list-style: none;
}

.tabs_6187 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_6187 li:last-child {
    border-bottom: none;
}

/* Games Features */
.status-d477 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.layout-middle-124e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer_thick_8278 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.plasma-26a4 {
    margin: 2rem 0;
}

.yellow_6f31 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.shadow-light-9924 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.out-ef0b {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.search_c078 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.breadcrumb_complex_b588 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_complex_b588 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green-834d {
    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);
}

.green-834d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thick_5e10 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.message-35ab {
    font-size: 1.5rem;
}

.west_36ef {
    color: var(--accent-color);
    margin: 0;
}

.filter_d720 {
    list-style: none;
}

.filter_d720 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.filter_d720 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.old-e750 {
    margin: 2rem 0;
}

.north-b0b6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.accent_wide_2772 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .accent_wide_2772 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_874c {
    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);
}

.wrapper_ca3a {
    font-size: 1.25rem;
}

.wrapper_4c1a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.pattern-2030,
.search-a0eb {
    text-align: center;
    margin: 2rem 0;
}

.wrapper-e76e,
.thumbnail-cool-7b1a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.aside_east_5a4b {
    margin: 2rem 0;
    text-align: center;
}

.preview-23b8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.preview-23b8::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;
}

.alert-887d {
    position: relative;
    z-index: 1;
}

.current-4c33 {
    margin-bottom: 1rem;
}

.image_c87e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.table_3736 {
    margin-bottom: 3rem;
}

.primary_easy_993b {
    margin-top: 3rem;
}

.hero_5f9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero_5f9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_5f9d .tiny_2417 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow_ab35 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed-3a9b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.fast_2f1f {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.description-e223 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .description-e223 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description-e223 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tiny_56cf {
    margin-bottom: 1rem;
}

.next_035d img {
    margin-bottom: 1rem;
}

.hero_static_89d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_e45d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.top_3370 {
    list-style: none;
}

.top_3370 li {
    margin-bottom: 0.5rem;
}

.top_3370 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top_3370 a:hover {
    color: var(--accent-color);
}

.alert-north-c3db {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thumbnail_076d {
    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);
}

.thumbnail_076d:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.title-orange-d94b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.title-orange-d94b p {
    margin-bottom: 0.25rem;
}

.notification_bottom_ea32 {
    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) {
    .notification_bottom_ea32 {
        flex-direction: row;
    }
}

.solid_4320 {
    text-align: center;
}

@media (min-width: 768px) {
    .solid_4320 {
        text-align: left;
    }
}

.solid_4320 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.heading_5bb6 {
    font-size: 0.75rem !important;
}

.breadcrumb-dark-99fd {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sort-steel-388e {
    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);
    }
}

.pagination_4b6b {
    animation: fadeInUp 0.6s ease-out;
}

.widget-basic-73ad {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.paper_a152 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paper_a152 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hidden-wood-0889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-wood-0889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_837b {
    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);
}

.active_837b .footer_thick_8278 {
    font-size: 1.25rem;
}

.active_837b .simple_fa2e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.disabled_1b44 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_1b44 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-purple-d63a {
    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);
}

.column-purple-d63a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_cdfa {
    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);
}

.accordion-dynamic-4948 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slider_mini_6168 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_1498 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-a160 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-a160 .overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-a160 .prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_39f8 {
    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);
}

.large-4e55 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.large-4e55 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.large-4e55 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.surface_pressed_7519 {
    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);
}

.layout-clean-1118 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer_large_2379 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer_large_2379 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer_large_2379 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);
}

.footer_large_2379 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.footer_large_2379 input::placeholder {
    color: var(--text-muted);
}

.full-39e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature_center_2a13 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.feature_center_2a13 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.frame-607e {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.frame-607e:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.accent_wide_2772 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_wide_2772 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_874c {
    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);
}

.short_874c .wrapper_ca3a {
    font-size: 1.25rem;
}

.short_874c .wrapper_4c1a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.backdrop-white-b7a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_top_b04d {
    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);
}

.module_top_b04d .footer_thick_8278 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_top_b04d .overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_top_b04d .prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-1063 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-7876 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.solid-7876 .nav-4ecc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-7876 .wide-1ebc {
    color: var(--text-gray);
    line-height: 1.6;
}

.row_wood_6f99 {
    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);
}

.old-09d4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old-09d4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_cca2 {
    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);
}

.picture_cca2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-lite-05ed {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mini_e473 {
    flex: 1;
}

.carousel-in-b1bb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mini-de3d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-6690 {
    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);
}

.text-6690:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture-tall-d02b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-tall-d02b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_75f9 {
    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);
}

.feature_75f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown-d83b {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-c91b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.west_d47e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.photo_brown_85ee {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.content-8620 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid-f8fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-215d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.copper-215d .dropdown_4d1c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-215d .heading-7a30 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-751a {
    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);
}

.detail-next-3957 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_simple_637b {
    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);
}

.sort_simple_637b .footer_thick_8278 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_simple_637b .overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_simple_637b .prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-2036 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft-2036 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_b17d {
    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);
}

.image_b17d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.button_wide_5a95 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_wide_5a95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-36a7 {
    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);
}

.highlight-36a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_5cad {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-1635 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shadow-light-9924 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.focus-gold-a26d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.soft_8052 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_4c30 {
    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);
}

.highlight_4c30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-f98c {
    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);
}

.element-291e {
    flex: 1;
}

.cool_b0c1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.new_6c58 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.current_50b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-a6b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_75a6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_75a6 .nav-4ecc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_75a6 .wide-1ebc {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-a0eb {
    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);
}

.header_gas_0ba8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_gas_0ba8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.dynamic-4713 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic-4713 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_old_1cd2 {
    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);
}

.element_old_1cd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-7578 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-bronze-80a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thumbnail-outer-ab8e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.south_8567 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pink-7f9e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-9ff5 {
    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);
}

.video_cool_cce6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-iron-6eb2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-7667 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-next-3957 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_simple_637b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sort_simple_637b .overlay-63b2 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_simple_637b .prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-7bc8 {
    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);
}

.notification-prev-c1aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification-prev-c1aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification-prev-c1aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-848d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-848d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-74e4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden-advanced-22c9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.image_34aa {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.status-d942 {
    padding: 1.5rem;
}

.motion-13e8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.last_68ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.last_68ad 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;
}

.last_68ad li:last-child {
    border-bottom: none;
}

.last_68ad li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.carousel_adcf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_adcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_slow_6e69 {
    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);
}

.hero_slow_6e69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_inner_144a {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma_7cde {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-first-caab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav_narrow_b096 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shade_41c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east_d25d {
    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);
}

.basic-99ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev-f871 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-wide-2e02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick_682e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.basic_8e05 {
    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);
}

.green_f37f {
    text-align: center;
}

.steel_87b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-ee2e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_fresh_1587 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-purple-9e39 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-purple-9e39 .overlay-63b2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb-purple-9e39 .prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_basic_6802 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_basic_6802 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video_basic_6802 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-0904 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dynamic-0904:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_b093 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.button_copper_68fa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.overlay-63b2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.component-86c2 {
    padding: 1.5rem;
}

.prev-ba99 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image_bronze_d55a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_bronze_d55a 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;
}

.image_bronze_d55a li:last-child {
    border-bottom: none;
}

.image_bronze_d55a li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.photo_lower_1eae {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.footer_motion_94c4 {
    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);
}

.footer_motion_94c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-137e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-2a62 {
    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);
}

.huge_cdfa {
    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;
}

.accordion-dynamic-4948 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider_mini_6168 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-4cca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_1acc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-hard-d4c1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-soft-338e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sort_inner_9d69 {
    display: flex;
    gap: 1rem;
}

.sort_inner_9d69 .border-hovered-913d {
    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;
}

.light-ec65 {
    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);
}

.border-c702 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.video_dynamic_7bf7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_dynamic_7bf7 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;
}

.video_dynamic_7bf7 li:last-child {
    border-bottom: none;
}

.video_dynamic_7bf7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.up_158a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .up_158a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .up_158a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next-26a9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.next-26a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-bottom-f51e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.advanced_6866 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dropdown_4d1c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.description_smooth_6f42 {
    font-size: 1rem;
}

.accent_new_db93 {
    padding: 1.5rem;
}

.heading-7a30 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.primary_soft_afcf {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.primary_soft_afcf .green_f37f {
    text-align: center;
}

.primary_soft_afcf .hard-ee2e {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.primary_soft_afcf .chip_action_880f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.chip_a85e {
    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);
}

.chip_a85e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.main_580a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_580a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_liquid_2903 {
    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);
}

.item_liquid_2903:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short-cf5f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot-840f {
    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);
}

.clean-579a {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_e0cc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_liquid_894c {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-303a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover-top-174a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_complex_ee97 {
    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);
}

.down-f73a {
    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;
}

.down-f73a.detail_hot_c257 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.down-f73a.form-up-743a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.down-f73a.image_brown_ea3b {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.down-f73a.focus_b39d {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.down-f73a.tabs_warm_2423 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.primary_blue_3e4c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown_767b {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-in-c50b {
    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);
}

.description-bronze-7965 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wrapper-1063 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-1063 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;
}

.wrapper-1063 li:last-child {
    border-bottom: none;
}

.wrapper-1063 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.label-fluid-28d7 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label-fluid-28d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-fluid-28d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth_a25b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.smooth_a25b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_a25b.glass_72a7 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .smooth_a25b.glass_72a7 {
        grid-column: span 3;
    }
}

.photo_ad1a {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.smooth_a25b.glass_72a7 .photo_ad1a {
    background: rgba(6, 182, 212, 0.1);
}

.over_7540 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-2a46 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.smooth_a25b.glass_72a7 .nav-2a46 {
    color: var(--info-color);
}

.texture_c4f3 {
    padding: 1.5rem;
    text-align: center;
}

.light-4e31 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.smooth_a25b.glass_72a7 .light-4e31 {
    color: var(--info-color);
}

.backdrop_paper_8bef {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wrapper_dark_b88f {
    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 */
.hover_tiny_ad02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_tiny_ad02 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_rough_275b {
    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);
}

.table_rough_275b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-hovered-5fc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_top_b04d {
    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);
}

.wrapper_ca3a {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-warm-683a {
    flex: 1;
}

.north-b0b6 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail_over_3500 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-49d0 {
    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);
}

.text_gold_9678 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pro-8cb5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sort-steel-388e {
    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);
}

.up-f92d {
  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);
}

.up-f92d .green_f37f {
    text-align: center;
}

.up-f92d .steel_87b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.up-f92d .hard-ee2e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.article_outer_d4f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-8fab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_south_197b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_center_e8b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-dim-597f {
    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);
}

.tertiary_d0dc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_8405 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-5ae1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dirty-5ae1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty-5ae1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_06c7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.disabled_06c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-first-125d {
    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);
}

.sidebar-da2a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accent_warm_386d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.simple_d7dd {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.simple_d7dd.input-huge-fbbe {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.simple_d7dd.dropdown_31b7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.simple_d7dd.thumbnail-a106 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.top_22e3 {
    padding: 1.5rem;
    text-align: center;
}

.paragraph-up-648e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail-5ffc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-5ffc .huge-f69c {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.surface_narrow_2256 {
    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);
}

.surface_narrow_2256:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.element_solid_9fae {
  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);
}

.accordion_eb50 {
    text-align: center;
}

.accordion_eb50 .steel_87b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.accordion_eb50 .hard-ee2e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.bronze-1489 { text-align: center; }
.fresh_c243 { text-align: left; }
.main_6c7c { text-align: right; }

.tag-top-b534 { margin-bottom: 0; }
.easy-ea2a { margin-bottom: 0.5rem; }
.aside-99e2 { margin-bottom: 1rem; }
.old_008b { margin-bottom: 1.5rem; }
.info_stone_8df8 { margin-bottom: 2rem; }

.section_warm_0c12 { margin-top: 0; }
.layout-bdbe { margin-top: 0.5rem; }
.tabs_51c1 { margin-top: 1rem; }
.orange-94c7 { margin-top: 1.5rem; }
.pro-3915 { margin-top: 2rem; }

.fn-hidden-2859 { display: none; }
.fn-visible-2859 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .focused-bf41 {
        padding: 6rem 0 3rem;
    }
    
    .preview_8a56 {
        text-align: center;
    }
    
    .texture-rough-d80a {
        text-align: center;
    }
    
    .copper_cb3b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .content_black_877f,
    .detail_wide_d90f,
    .preview-23b8,
    .fast_2f1f {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .focused-bf41 {
        background: none;
    }
}

/* Providers Section */
.image_fast_d1bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini_0b99 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini_0b99 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini_0b99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-new-1c1b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-new-1c1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_pink_b740 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.photo-silver-2686 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.form_18a9 {
    list-style: none;
    padding: 0;
}

.form_18a9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.form_18a9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.next_c1c9 {
    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);
}

.next_c1c9 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.glass-77f8 {
    padding: var(--section-padding);
}

.tall-fa5d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall-fa5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-c5b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled-c5b3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-09eb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.out_2e7d {
    display: flex;
    flex-direction: column;
}

.black_64dd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.focus-short-c65f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.picture_867e {
    color: var(--accent-color);
}

.tag-tiny-ba75 {
    font-size: 1.25rem;
}

.card-green-c698 {
    margin-bottom: 1rem;
}

.card-green-c698 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.iron_8896 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slider_83f2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.green_f37f {
    text-align: center;
}

.steel_87b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-ee2e {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.slow_cea2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border_dirty_f9ae {
    margin: 2rem 0;
}

.background-b011 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.background-b011 .footer_thick_8278 {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-6ffb {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.preview_hot_40c6 {
    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;
}

.preview_hot_40c6:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.out-4f7a {
    font-size: 2rem;
}

.banner-inner-2e9d {
    display: flex;
    flex-direction: column;
}

.message-huge-ba9d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.list_3c9e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.focus_smooth_8cea {
    padding: var(--section-padding);
}

.preview_small_5b5e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview_small_5b5e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview_small_5b5e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-3714 {
    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);
}

.hero-3714:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero-3714 .steel_87b3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-3714 .hard-ee2e {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.hero-3714 .full-22ab {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.short_d7b9 {
    margin-top: 4rem;
}

.avatar-fixed-17fc {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.secondary-hard-f26b {
    overflow-x: auto;
}

.avatar-0093 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.avatar-0093 thead {
    background: var(--accent-color);
}

.avatar-0093 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.avatar-0093 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-0093 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.avatar-0093 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.over-d8bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-db1a {
    max-width: 900px;
    margin: 0 auto;
}

.bright_3c89 {
    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);
}

.bright_3c89:hover {
    border-color: var(--accent-color);
}

.search_be3e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.search_be3e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hot-5d2b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.bright_3c89.fn-active-2859 .hot-5d2b {
    transform: rotate(45deg);
}

.video-b053 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.bright_3c89.fn-active-2859 .video-b053 {
    max-height: 1000px;
}

.video-b053 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.form-8e60 {
    padding: var(--section-padding);
}

.large-4e55 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.border-pink-a318 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-small-7846 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-small-7846 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-orange-d6db {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-mini-48b0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-bottom-dbed {
    font-size: 2rem;
}

.wood-39ff {
    color: var(--text-white);
    margin: 0;
}

.background-middle-c736 {
    list-style: none;
    padding: 0;
}

.background-middle-c736 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background-middle-c736 li:last-child {
    border-bottom: none;
}

.feature-dfb2 {
    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);
}

.feature-dfb2 p {
    color: var(--success-color);
    margin: 0;
}

.tiny-c191 {
    margin-top: 3rem;
}

.border-c702 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.button-d594 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-d594 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.under-84bb {
    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);
}

.thick_a253 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.under-84bb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.menu_north_6141 {
    padding: var(--section-padding);
}

.chip_8f27 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_8f27 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-copper-9d75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary-copper-9d75:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.photo-d2b1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask-0dd8 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.north_22ed {
    flex: 1;
}

.outer_a0fb {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.widget-d07b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.feature_soft_7ecd {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-red-8748 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-red-8748:last-child {
    border-bottom: none;
}

/* Comparison Section */
.static_2e5d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.backdrop_680a {
    padding: var(--section-padding);
}

.rough_5178 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.paragraph-smooth-02af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-smooth-02af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-5016 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_1ec9, .component-stale-ee27, .hard_e3a8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hard_e3a8 {
    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 */
.text-easy-0d59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_433d {
    margin: 2rem 0;
}

.component_lower_9833 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-f93c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.purple-bc56 {
    list-style: none;
    padding: 0;
}

.purple-bc56 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;
}

.purple-bc56 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.purple-bc56 li:last-child {
    border-bottom: none;
}

.tooltip-55cd {
    text-align: center;
    margin-top: 2rem;
}

.label_aae4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.component_first_e62f {
    padding: var(--section-padding);
}

.rough_2299 {
    margin: 2rem 0;
}

.modal-3c2e {
    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) {
    .modal-3c2e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.modal-3c2e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paragraph-3c9e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.frame_a260 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.orange-f4ec {
    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;
}

.menu_fresh_3a68 {
    flex: 1;
}

.label-first-9069 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.header-light-efb9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.paper_10b1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.filter-7a98 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .filter-7a98 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.dropdown-simple-f5d7 {
    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);
}

.dropdown-simple-f5d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown-simple-f5d7 .steel_87b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-simple-f5d7 .hard-ee2e {
    color: var(--text-gray);
    font-size: 1rem;
}

.media-narrow-665e {
    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);
}

.wood-69c1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.wood-69c1 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.tall_f5c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .tall_f5c1 {
        grid-template-columns: 1fr 1fr;
    }
}

.mask-active-3d0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-ddeb {
    margin-bottom: 1.5rem;
}

.focus-ddeb label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.focus-ddeb input,
.focus-ddeb 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;
}

.focus-ddeb input:focus,
.focus-ddeb select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mini-bdab {
    width: 100%;
    margin-top: 1rem;
}

.focused-f325 {
    display: flex;
    align-items: center;
}

.hard_4faf {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.fixed-c4f3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.container-bright-5476 {
    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;
}

.row-e5e1 {
    color: var(--text-gray);
}

.picture-fd9e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.block-current-09a8 {
    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);
}

.block-current-09a8 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tabs_d6d8 {
    margin-top: 3rem;
}

.module_green_870e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.label_5c86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_mini_1e6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.green-b5b0 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green-b5b0:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.element-4c8a {
    padding: var(--section-padding);
}

.accordion_pink_8f91 {
    margin: 2rem 0;
}

.slider-c655 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.menu_7ad7 {
    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;
}

.menu_7ad7:hover, .menu_7ad7.fn-active-2859 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.paragraph-tall-523d {
    display: none;
}

.paragraph-tall-523d.fn-active-2859 {
    display: block;
}

.image_narrow_fc9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_1981 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-brown-2a5d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.footer-brown-2a5d ul {
    list-style: none;
    padding: 0;
}

.footer-brown-2a5d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.footer-brown-2a5d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nav-f303 {
    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 */
.slider-upper-0527 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-7008 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_404d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hidden_new_b7cb {
    color: var(--accent-color);
    margin: 0;
}

.row_4f54 {
    display: flex;
    gap: 1.5rem;
}

.shadow_green_8414 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs_brown_41dd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.column-1ef7 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-1ef7.feature-under-9ea4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.column-1ef7.backdrop_light_8765 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.column-1ef7.liquid_ae15 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.narrow-324a {
    margin-top: 2rem;
}

.description-8cf7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box_5b40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .box_5b40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_257d {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.component-north-166e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gradient_complex_0618 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.active_c288 {
    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 */
.old-f46a {
    padding: var(--section-padding);
}

.primary_0957 {
    margin: 2rem 0;
}

.yellow-4a9c {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.avatar-bf2e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.backdrop_outer_3ea7 {
    list-style: none;
    padding: 0;
}

.backdrop_outer_3ea7 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;
}

.backdrop_outer_3ea7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.backdrop_outer_3ea7 li:last-child {
    border-bottom: none;
}

.header-3241 {
    margin: 2rem 0;
}

.paragraph-745e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph_1468 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph_1468 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module_bf22 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-c891 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-ccab {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent-4789 {
    margin-top: 2rem;
}

.carousel-in-b1bb {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.link-red-8767 {
    list-style: none;
    padding: 0;
}

.article_white_41d8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.article_white_41d8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.article_white_41d8 a:hover {
    text-decoration: underline;
}

.mask-green-8f4d {
    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 */
.module-2539 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-under-b0ba {
    margin: 2rem 0;
}

.action-c9af {
    margin-bottom: 3rem;
}

.action-c9af .out-f93c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.clean-0604 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.brown_80e0 {
    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);
}

.brown_80e0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.video-472f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .video-472f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-copper-a881 {
    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 */
.modal_gold_999d {
    padding: var(--section-padding);
}

.backdrop_dirty_1db7 {
    margin: 2rem 0;
}

.table-red-d934 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled_e99a {
    overflow-x: auto;
    margin: 2rem 0;
}

.pattern_silver_925c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.static-6958 {
    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;
}

.paragraph-0b5c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hover-rough-6990 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hover-rough-6990 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_2d01 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_2d01 .footer_thick_8278 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.fixed_2d01 .overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph-full-a334 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.paragraph-blue-3a6c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_3859 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_3859 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-9b2e {
    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;
}

.badge-9b2e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.filter-full-f80b {
    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);
}

.active-center-cbba {
    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;
}

.image_up_8cea {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.first_cfdd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.shade_c599 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.text-dim-9ec1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-iron-6c6e {
    color: var(--text-white);
    font-weight: 600;
}

.section_a18a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dark-096f {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-096f .border-hovered-913d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs-yellow-3c07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-yellow-3c07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_hard_8a8c {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box_hard_8a8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_hard_8a8c .steel_87b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_hard_8a8c .hard-ee2e {
    color: var(--text-gray);
    font-size: 1rem;
}

.thumbnail_8fc0 {
    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);
}

.image-narrow-6799 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.image-narrow-6799 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.pink-7f9e {
    margin: 2rem 0;
}

.last-9ff5 {
    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);
}

.last-9ff5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.video_cool_cce6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lower-e158 {
    flex: 1;
}

.gradient-iron-6eb2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-7667 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.detail-next-3957 {
    margin: 2rem 0;
}

.sort_simple_637b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_simple_637b .overlay-63b2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sort_simple_637b .prev-ba99 {
    color: var(--text-gray);
    margin: 0;
}

.rough-7bc8 {
    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);
}

.rough-7bc8 .wrapper-e76e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.paragraph-full-a334 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.active-f98c {
    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;
}

.element-291e {
    flex: 1;
}

.new_6c58 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.current_50b1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.huge_cdfa {
    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;
}

.icon-dfb5 {
    flex: 1;
}

.accordion-dynamic-4948 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.slider_mini_6168 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.video-hard-d4c1 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.menu-soft-338e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.sort_inner_9d69 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.sort_inner_9d69 .border-hovered-913d {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.light-ec65 {
    margin-top: 2rem;
}

.light-ec65 .border-c702 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.short_c74b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_8e05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .basic_8e05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_8e05 .green_f37f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_fresh_1587 {
    margin: 2rem 0;
}

.breadcrumb-purple-9e39 {
    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 */
.list-north-6d4e {
    padding: var(--section-padding);
}

.component-86c2 {
    margin-top: 1rem;
}

.image_bronze_d55a {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.image_bronze_d55a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.image_bronze_d55a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.new_4554 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-53e6 {
    margin: 2rem 0;
}

.block_4a74 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.outline-green-f7b3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.glass_7ba4 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.copper-ab25 {
    margin: 2rem 0;
}

.slow_2b43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slow_2b43 .out-f93c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.last_352a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .last_352a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section_slow_6a80 {
    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);
}

.active_plasma_48a3 {
    color: var(--text-white);
    font-weight: 600;
}

.tag_0fa3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.disabled_steel_9e34 {
    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);
}

.disabled_steel_9e34 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.wrapper-0320 {
    padding: var(--section-padding);
}

.message-lower-e293 {
    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;
}

.message-lower-e293:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.background-b191 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background-b191 .thick_a253 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-b191 .solid_6c49 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.label_small_05cf {
    flex: 1;
}

.accent-a616 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-a5bb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-a5bb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.article-a5bb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.aside_active_d9c3 {
    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);
}

.aside_active_d9c3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside_active_d9c3 strong {
    color: var(--warning-color);
}

/* Slots Section */
.list_out_8d68 {
    padding: var(--section-padding);
}

.content-8620 {
    margin: 2rem 0;
}

/* Table Games Section */
.full_c1b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-f8fe {
    margin: 2rem 0;
}

.copper-215d {
    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);
}

.copper-215d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.copper-215d .dropdown_4d1c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-215d .heading-7a30 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.orange-751a {
    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);
}

.orange-751a .wrapper-e76e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.mini_540d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_pressed_e1c3 {
    margin: 2rem 0;
}

.container_clean_cf0f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_next_d8e5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-8ffa {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.upper_70d0 {
    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);
}

.upper_70d0:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.upper_70d0.fn-active-2859 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_013e {
    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);
}

.black_24f9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black_24f9 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.input_906d {
    padding: var(--section-padding);
}

.red-3ca2 {
    margin: 2rem 0;
}

.slow-331f {
    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);
}

.slow-331f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .slow-331f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.item_ade4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.article-907c {
    flex: 1;
}

.current_b1c4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pressed_24fc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button_light_dbf7 {
    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;
}

.sidebar-515c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.summary-3dc8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.old_f45b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs-eeb2 {
    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;
}

.tabs-eeb2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.badge-tall-318f {
    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);
}

.logo-81b8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo-81b8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.stale_ba32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-7c47 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip-7c47 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-7c47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image_ecae {
    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;
}

.image_ecae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced-7840 {
    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;
}

.focused-eb36 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.container-3e53 {
    font-size: 2rem;
}

.notice_liquid_4e80 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.container_a383 {
    flex: 1;
}

.info-5cf5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.menu-paper-1dc6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.gradient-over-3b00 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-warm-6792 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dim_427d {
    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;
}

.carousel_fluid_1d20 {
    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;
}

.carousel_fluid_1d20:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.background-dynamic-3508 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-basic-af7b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.narrow_a530 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .narrow_a530 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-plasma-c556 {
    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);
}

.dim-e6bd {
    color: var(--text-white);
    font-weight: 600;
}

.title-008e {
    color: var(--accent-color);
    font-weight: 600;
}

.short_fd25 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.short_fd25 strong {
    color: var(--accent-color);
}

/* Security Section */
.row_2c7a {
    padding: var(--section-padding);
}

/* Benefits Section */
.component_3c52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.label-b2c9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.title_73cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-lower-43f3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.photo-6176 {
    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) {
    .photo-6176 {
        flex-direction: column;
        gap: 1rem;
    }
}

.photo-6176:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.photo-6176 .huge_cdfa {
    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;
}

.photo-6176 .icon-dfb5 {
    flex: 1;
}

.photo-6176 .accordion-dynamic-4948 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.photo-6176 .slider_mini_6168 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accordion_51a5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_51a5 .north-b0b6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_51a5 .backdrop-white-b7a8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion_51a5 .backdrop-white-b7a8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accordion_51a5 .backdrop-white-b7a8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wrapper-68d3 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.bottom-6884 {
    padding: var(--section-padding);
}

.link-010a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .link-010a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_37d0 {
    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);
}

.notice_37d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.notice_37d0 .fast_b3ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_37d0 .fresh-d397 {
    flex: 1;
}

.notice_37d0 .nav-4ecc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_37d0 .smooth_38e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.clean_a6ab {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean_a6ab .filter_f806 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean_a6ab .paragraph_719d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.clean_a6ab .paragraph_719d 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);
}

.clean_a6ab .paragraph_719d li:last-child {
    border-bottom: none;
}

.clean_a6ab .paragraph_719d 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;
}

.clean_a6ab .paragraph_719d li strong {
    color: var(--text-white);
}

.search_dynamic_842b {
    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);
}

.search_dynamic_842b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_dynamic_842b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.caption_70af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_paper_c06e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .sort_paper_c06e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notice-fresh-7729 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notice-fresh-7729:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.chip_530b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas-4a2c {
    font-size: 2rem;
}

.selected_b4d1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.orange_26d9 {
    flex: 1;
}

.fixed_ba00 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed_ba00 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fixed_ba00 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.complex-594f {
    margin-top: 3rem;
}

.yellow-4a9c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar-bf2e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_outer_3ea7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop_outer_3ea7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.backdrop_outer_3ea7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.backdrop_outer_3ea7 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.icon-657f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_west_b4da {
    margin: 2rem 0;
}

.yellow_e4df {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.yellow_e4df .out-f93c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-27fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .logo-27fe {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container-pressed-eceb {
    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);
}

.container-pressed-eceb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.primary_under_a789 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shadow_dark_cfa5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.photo_thick_28e8 {
    padding: var(--section-padding);
}

.container_511f {
    margin: 2rem 0;
}

.grid-171e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .grid-171e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-171e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_pro_1481 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient_pro_1481:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.medium-9c64 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sort_liquid_35f7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.form-c2b5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.form-c2b5.small_e400 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.mask_purple_da95 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.selected-ecdb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tall_7cda {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pink-b5b3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph_pressed_3098 {
    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);
}

.paragraph_pressed_3098 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph_pressed_3098 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.title_f06e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_f3fd {
    margin: 2rem 0;
}

.tag-bright-08ee {
    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) {
    .tag-bright-08ee {
        flex-direction: column;
        gap: 1rem;
    }
}

.tag-bright-08ee:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tag-bright-08ee::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);
}

.narrow-d221 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.secondary_outer_5ac0 {
    flex: 1;
}

.popup-solid-8c59 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.upper_4e62 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper_4e62 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_pink_5a65 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-459c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-narrow-e3fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient-narrow-e3fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_stale_2198 {
    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);
}

.west-a59c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.outline-4fee {
    flex: 1;
}

.liquid-f796 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.notification-tall-873f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.backdrop_lower_c04a {
    margin-top: 2rem;
    text-align: center;
}

.accent-wood-93db {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent-wood-93db strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.main_580a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_580a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_liquid_2903 {
    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);
}

.item_liquid_2903:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.item_liquid_2903 .tabs_inner_144a {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_liquid_2903 .plasma_7cde {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.item_liquid_2903 .description-first-caab {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.item_liquid_2903 .nav_narrow_b096 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.fresh_3708 {
    padding: var(--section-padding);
}

.hot-840f .status-right-c7fe {
    flex: 1;
}

/* Promo Calendar Section */
.fluid-7ae4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-simple-85b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-simple-85b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper-cfe6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-b457 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.current-319a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-d174 {
    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);
}

.static_0401 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bronze-1868 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.cold-bfd7 {
    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);
}

.cold-bfd7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.cold-bfd7 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.box_7abc {
    padding: var(--section-padding);
}

.solid-38b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .solid-38b0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag-1477 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_dynamic_410e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame_pressed_4f13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_pressed_4f13 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.container_3130 {
    margin-top: 3rem;
}

.container_3130 .yellow-4a9c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container_3130 .avatar-bf2e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_3130 .backdrop_outer_3ea7 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.container_3130 .backdrop_outer_3ea7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container_3130 .backdrop_outer_3ea7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container_3130 .backdrop_outer_3ea7 li strong {
    color: var(--warning-color);
}

.pattern_medium_21fc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern_medium_21fc strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.nav-59b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale-0b97 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale-0b97 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-1203 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-1203 .out-f93c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.south-2505 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wide-2f1f {
    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);
}

.wide-2f1f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard-4a0d {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_f818 {
    flex: 1;
}

.text_first_0a63 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.medium_d931 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.red_64ab {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.top-8328 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.orange-fb83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .orange-fb83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-149b {
    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);
}

.action-149b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.last-a326 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_c59b {
    color: var(--text-gray);
    font-size: 1rem;
}

.wood-69c1 {
    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);
}

.dark-9696 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.dark-9696 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.heading-east-1c70 { 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; }
.primary-pressed-6537, .modal_fluid_fb5e { max-width:100%; height:auto; }

.hard_e1ed, .black_df41, .sidebar-red-2b19 { white-space:normal; }

.preview_8a56,
.texture-rough-d80a,
.hover_tiny_ad02,
.main_580a,
.detail-next-3957,
.dirty-5ae1 {
  flex-wrap:wrap;
}

[class*="grid"],
.orange-fb83,
.grid-171e,
.hero_5f9d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.focused-bf41 img,
.texture-rough-d80a img,
.gallery_focused_a998 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.focus-9a26, .main_bright_7739,
.chip-412f, .pagination-dad7 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.secondary-hard-f26b { width:100%; overflow-x:auto; }
.secondary-hard-f26b table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.mini_0b99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .mini_0b99 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.detail-new-1c1b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.preview_small_5b5e,
.heading-yellow-2633,
.bronze-7d04,
.shadow_old_e594,
.filter-7a98,
.orange-fb83,
.grid-171e,
.hero_5f9d,
.element_solid_9fae,
.red-3ca2,
.mini_0b99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .preview_small_5b5e,
  .heading-yellow-2633,
  .bronze-7d04,
  .shadow_old_e594,
  .filter-7a98,
  .orange-fb83,
  .grid-171e,
  .hero_5f9d,
  .element_solid_9fae,
  .red-3ca2,
  .mini_0b99 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.hero-3714,
.dropdown-simple-f5d7,
.action-149b,
.tiny_2417,
.gradient_pro_1481,
.accordion_eb50,
.slow-331f,
.detail-new-1c1b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.item_left_c19d,
.alert_b4c1,
.notice-bright-6a7e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.item_left_c19d > *,
.alert_b4c1 > *,
.notice-bright-6a7e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: da20 */
.shadow-element-u4 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
