/* {$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;
}

.link-rough-fc7a {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.bright_fe75 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .bright_fe75 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .bright_fe75 {
        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 */
.selected_cfc9 {
    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);
}

.pressed_b8bb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pressed_b8bb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .media-current-4217 {
        grid-column: 1;
    }
    
    .west-f732 {
        grid-column: 2;
    }
    
    .shade-7d06 {
        grid-column: 3;
    }
}

.media-current-4217 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.media-current-4217:hover img {
    transform: scale(1.05);
}

/* Navigation */
.box-0cfa {
    display: none;
}

@media (min-width: 1024px) {
    .box-0cfa {
        display: block;
    }
}

/* Grouped Navigation */
.box-bf58 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tiny-0885 {
    position: relative;
}

.card_f5ad {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tiny-0885 .tiny-0022 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tiny-0022 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.shadow_static_5728 {
    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;
}

.shadow_static_5728:hover,
.shadow_static_5728.fn-active-7b7b {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.silver-0ff6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .silver-0ff6 {
        display: flex;
    }
}

/* Mobile Register Button */
.west-f732 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .west-f732 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.east_b1bb {
    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;
}

.east_b1bb::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 */
.shade-7d06 {
    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) {
    .shade-7d06 {
        display: none;
    }
}

.shade-7d06 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.shade-7d06.fn-active-7b7b span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.shade-7d06.fn-active-7b7b span:nth-child(2) {
    opacity: 0;
}

.shade-7d06.fn-active-7b7b span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar_narrow_a8ed {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sidebar_narrow_a8ed.fn-active-7b7b {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.image_480c {
    overflow: hidden;
}

.banner-ca43 {
    list-style: none;
    padding: 0.75rem 0;
}

.logo_3204 {
    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;
}

.logo_3204:hover,
.logo_3204.fn-active-7b7b {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.logo_3204.wrapper-d3a8 {
    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;
}

.logo_3204.wrapper-d3a8::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 */
.focus_copper_9c45 {
    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;
}

.next-7f60 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.next-7f60:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.next-8344 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.next-8344:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.texture_cd80 {
    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;
}

.texture_cd80:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.small_35bb {
    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;
}

.label-left-04b6 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.label-left-04b6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.current-255b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.current-255b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.in_3ff5 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.in_3ff5: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);
}

.right-fbd2 {
    font-size: 1em;
    font-weight: 700;
}

.modal_a5b9 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.list_thick_b39f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.list_thick_b39f::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;
}

.soft_e910 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .soft_e910 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.paragraph-466a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.huge-b4b7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.header-6a54 {
    margin-bottom: 2rem;
}

.element-17e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .element-17e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_4572 {
    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);
}

.north-17b5 {
    font-size: 1.5rem;
}

.lower-bc62 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.texture_black_55c5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warm-5e2d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.warm-5e2d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.message-pressed-7725 {
    text-align: center;
    margin-bottom: 3rem;
}

.overlay-liquid-f7ea {
    margin-bottom: 1rem;
}

.article-412a {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.soft_f92e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .soft_f92e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .soft_f92e.header_8dce {
        direction: rtl;
    }
    
    .soft_f92e.header_8dce > * {
        direction: ltr;
    }
}

.description-4339 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.description-4339:first-child {
    margin-top: 0;
}

.dark_5092 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.prev-05f9 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.prev-05f9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.accordion_motion_d253 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_motion_d253 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_1b15 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_wide_d8af {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.stone_9325 {
    list-style: none;
}

.stone_9325 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stone_9325 li:last-child {
    border-bottom: none;
}

/* Games Features */
.basic-1959 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.aside_full_5423 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.surface_4842 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.carousel_blue_4f9f {
    margin: 2rem 0;
}

.paragraph_stale_e11a {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.tag_2ad8 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.avatar_fast_f3aa {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.shadow-ee18 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pink-0f00 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-0f00 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-4c5a {
    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);
}

.module-4c5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.narrow_6e43 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-plasma-5f7b {
    font-size: 1.5rem;
}

.hovered-0b01 {
    color: var(--accent-color);
    margin: 0;
}

.outer_19a6 {
    list-style: none;
}

.outer_19a6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.outer_19a6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.message-1ab8 {
    margin: 2rem 0;
}

.disabled_static_5581 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.photo_2bbf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .photo_2bbf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_9ff8 {
    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);
}

.bright_5933 {
    font-size: 1.25rem;
}

.slider-56d4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hidden_d9c9,
.gas-f292 {
    text-align: center;
    margin: 2rem 0;
}

.hero-6a3a,
.caption-e8a0 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.modal-0337 {
    margin: 2rem 0;
    text-align: center;
}

.down-aa8e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.down-aa8e::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;
}

.image-61f7 {
    position: relative;
    z-index: 1;
}

.paragraph-1e65 {
    margin-bottom: 1rem;
}

.border_narrow_4da7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sort-2222 {
    margin-bottom: 3rem;
}

.overlay-1f1c {
    margin-top: 3rem;
}

.lite-0b10 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .lite-0b10 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite-0b10 .center_4572 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.east-39ed {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_8d08 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.component_easy_1bab {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.warm-096e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .warm-096e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm-096e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.avatar-thick-e47c {
    margin-bottom: 1rem;
}

.gallery_71b8 img {
    margin-bottom: 1rem;
}

.logo_5c20 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_9696 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.summary_ca54 {
    list-style: none;
}

.summary_ca54 li {
    margin-bottom: 0.5rem;
}

.summary_ca54 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.summary_ca54 a:hover {
    color: var(--accent-color);
}

.item-f687 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tertiary-short-6392 {
    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);
}

.tertiary-short-6392:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hover_wood_ad61 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hover_wood_ad61 p {
    margin-bottom: 0.25rem;
}

.active_13ef {
    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) {
    .active_13ef {
        flex-direction: row;
    }
}

.notice-down-ca06 {
    text-align: center;
}

@media (min-width: 768px) {
    .notice-down-ca06 {
        text-align: left;
    }
}

.notice-down-ca06 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-dynamic-5a04 {
    font-size: 0.75rem !important;
}

.static-5c13 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.widget-south-e354 {
    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);
    }
}

.label_west_5874 {
    animation: fadeInUp 0.6s ease-out;
}

.outline-e8bc {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.pattern-e76f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-e76f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.active-3f94 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-3f94 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-c09b {
    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);
}

.hover-c09b .surface_4842 {
    font-size: 1.25rem;
}

.hover-c09b .popup_50d6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hard_bdff {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard_bdff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-d911 {
    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);
}

.media-d911:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight-fe97 {
    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);
}

.input-pro-ac4a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_7722 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-4b78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-upper-ad00 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module-upper-ad00 .icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module-upper-ad00 .element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in_6309 {
    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);
}

.carousel_50bb {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.carousel_50bb img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel_50bb img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.thumbnail-da89 {
    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);
}

.green-8575 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mask-90dc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mask-90dc label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask-90dc 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);
}

.mask-90dc input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask-90dc input::placeholder {
    color: var(--text-muted);
}

.steel_7a1f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.accent-focused-8afe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.accent-focused-8afe input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.aside-smooth-9935 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.aside-smooth-9935:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.photo_2bbf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_2bbf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_9ff8 {
    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);
}

.card_9ff8 .bright_5933 {
    font-size: 1.25rem;
}

.card_9ff8 .slider-56d4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.avatar_mini_8b27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-b4e5 {
    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);
}

.gallery-b4e5 .surface_4842 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-b4e5 .icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-b4e5 .element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.south-53f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_paper_a920 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern_paper_a920 .cold-cf35 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_paper_a920 .short_663c {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner_005c {
    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);
}

.hard_34a4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard_34a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-silver-c062 {
    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);
}

.button-silver-c062:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_top_eba1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.menu_ed6f {
    flex: 1;
}

.filter-full-affa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blue-f7ad {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail_3ca6 {
    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);
}

.detail_3ca6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.status-ce36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-ce36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_887e {
    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);
}

.cold_887e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-lite-a816 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-hot-aa84 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.box-bronze-67f1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text-middle-d52c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outer-5c56 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_498d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-64a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel-64a8 .column_fea4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-64a8 .alert_new_3fab {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-rough-4170 {
    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);
}

.popup-9343 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_1266 {
    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);
}

.status_1266 .surface_4842 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_1266 .icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_1266 .element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-2570 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-2570 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-a08d {
    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);
}

.highlight-a08d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.easy_9ee7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_9ee7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_2768 {
    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);
}

.advanced_2768:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_6b29 {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel-14fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag_2ad8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.list-right-e502 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.chip-df7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-new-8885 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.description-new-8885:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_5959 {
    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);
}

.active-full-be38 {
    flex: 1;
}

.popup_hard_512d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.message_upper_bd2b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.link-e75b {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-2620 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-wide-656a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-wide-656a .cold-cf35 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article-wide-656a .short_663c {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-f292 {
    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);
}

.huge-626b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .huge-626b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.form_mini_8f23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_mini_8f23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough_6511 {
    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);
}

.rough_6511:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid_7e7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_b280 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.over-1e9c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dark_5261 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.heading_8006 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-dynamic-d3b7 {
    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);
}

.article_lite_9a36 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-f227 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark_a34e {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-9343 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_1266 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status_1266 .icon_3cbd {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status_1266 .element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-236e {
    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);
}

.frame_dba0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame_dba0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_dba0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-11d5 {
    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-11d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next-d576 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered-5707 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media-fixed-a53e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.column-full-1ee6 {
    padding: 1.5rem;
}

.backdrop_in_f10b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.orange-b1bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orange-b1bf 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;
}

.orange-b1bf li:last-child {
    border-bottom: none;
}

.orange-b1bf li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.banner_smooth_dc1c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_smooth_dc1c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-cold-e7e5 {
    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);
}

.logo-cold-e7e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_9640 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas-d160 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.avatar_next_7671 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop-medium-82d5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.heading_focused_1921 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-b52d {
    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);
}

.right_6f23 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-92ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_e105 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_2d4a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.label-lite-c7b9 {
    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);
}

.label-rough-8bdc {
    text-align: center;
}

.shadow-9442 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component_8887 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pink-cbbc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_f7ab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_f7ab .icon_3cbd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_f7ab .element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_bad2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border_bad2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_bad2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_in_d11f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon_in_d11f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_complex_6090 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.large-4227 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.icon_3cbd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.element_e86d {
    padding: 1.5rem;
}

.element_focused_3be5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.prev-8dd7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prev-8dd7 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;
}

.prev-8dd7 li:last-child {
    border-bottom: none;
}

.prev-8dd7 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.detail-stale-c00f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.element-dark-06ca {
    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-dark-06ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_f7d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple_65a0 {
    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);
}

.highlight-fe97 {
    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;
}

.input-pro-ac4a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_7722 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-fixed-17d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-cd0f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-8eee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_4f52 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.green-e426 {
    display: flex;
    gap: 1rem;
}

.green-e426 .link_3206 {
    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;
}

.lite_2098 {
    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);
}

.media-0106 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gallery_bff5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_bff5 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;
}

.gallery_bff5 li:last-child {
    border-bottom: none;
}

.gallery_bff5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.modal-813b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-813b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-813b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_80c9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hot_80c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_8fb1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden_8189 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.column_fea4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cool_76e2 {
    font-size: 1rem;
}

.icon-glass-c934 {
    padding: 1.5rem;
}

.alert_new_3fab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.disabled_red_5534 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.disabled_red_5534 .label-rough-8bdc {
    text-align: center;
}

.disabled_red_5534 .component_8887 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.disabled_red_5534 .surface-4276 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture-25ca {
    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);
}

.picture-25ca:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.primary_5a39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_5a39 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-e401 {
    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);
}

.gas-e401:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_24ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-5192 {
    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);
}

.notice_1587 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_1c33 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-soft-3e24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-877d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image-b179 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left_616b {
    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);
}

.search_41b6 {
    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;
}

.search_41b6.red_60eb {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.search_41b6.green-fa45 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.search_41b6.hard_031f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.search_41b6.tertiary_easy_e6be {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.search_41b6.avatar-orange-3b29 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.form_simple_c5a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_static_18ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh-39fd {
    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);
}

.mask-749d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.south-53f9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south-53f9 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;
}

.south-53f9 li:last-child {
    border-bottom: none;
}

.south-53f9 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.selected_a7d5 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .selected_a7d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected_a7d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-0a80 {
    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-0a80:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-0a80.wrapper-fluid-2c34 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .dynamic-0a80.wrapper-fluid-2c34 {
        grid-column: span 3;
    }
}

.article_4569 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.dynamic-0a80.wrapper-fluid-2c34 .article_4569 {
    background: rgba(6, 182, 212, 0.1);
}

.texture_a265 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-motion-0dd1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.dynamic-0a80.wrapper-fluid-2c34 .highlight-motion-0dd1 {
    color: var(--info-color);
}

.sort_east_6abd {
    padding: 1.5rem;
    text-align: center;
}

.fresh-716c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dynamic-0a80.wrapper-fluid-2c34 .fresh-716c {
    color: var(--info-color);
}

.active-cold-a910 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.carousel_gold_a3c4 {
    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 */
.block_c476 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_c476 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_dark_567d {
    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);
}

.breadcrumb_dark_567d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_d0c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-b4e5 {
    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);
}

.bright_5933 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale-607a {
    flex: 1;
}

.disabled_static_5581 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-c063 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-bd7b {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sidebar-0209 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture-hard-8bb8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.widget-south-e354 {
    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);
}

.module_43bd {
  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);
}

.module_43bd .label-rough-8bdc {
    text-align: center;
}

.module_43bd .shadow-9442 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.module_43bd .component_8887 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.smooth-143f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex_90a3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_active_c54e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold_cdc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-82e5 {
    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);
}

.badge_glass_b363 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_8c08 {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-f79e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .blue-f79e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blue-f79e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_liquid_d896 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery_liquid_d896:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_fresh_b3f0 {
    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);
}

.detail-clean-6626 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.element_78bf {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.preview_5e9d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview_5e9d.logo_2523 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.preview_5e9d.aside-focused-8f50 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.preview_5e9d.wide_8e8c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.table_b6b7 {
    padding: 1.5rem;
    text-align: center;
}

.disabled_outer_987a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search_dark_1ec6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search_dark_1ec6 .inner_3712 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.solid_d465 {
    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);
}

.solid_d465:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hover_1725 {
  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);
}

.column_middle_1992 {
    text-align: center;
}

.column_middle_1992 .shadow-9442 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.column_middle_1992 .component_8887 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.shade_b109 { text-align: center; }
.list_f624 { text-align: left; }
.status-solid-0ae3 { text-align: right; }

.pagination_a1cc { margin-bottom: 0; }
.popup-bronze-b7f1 { margin-bottom: 0.5rem; }
.dropdown_dirty_6c5f { margin-bottom: 1rem; }
.notification-8b35 { margin-bottom: 1.5rem; }
.tooltip_red_5266 { margin-bottom: 2rem; }

.mask-1aea { margin-top: 0; }
.gallery_red_f9ec { margin-top: 0.5rem; }
.stale-aeb0 { margin-top: 1rem; }
.focused-fc13 { margin-top: 1.5rem; }
.sidebar-black-1d48 { margin-top: 2rem; }

.fn-hidden-7b7b { display: none; }
.fn-visible-7b7b { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .list_thick_b39f {
        padding: 6rem 0 3rem;
    }
    
    .soft_e910 {
        text-align: center;
    }
    
    .soft_f92e {
        text-align: center;
    }
    
    .element-17e3 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .selected_cfc9,
    .sidebar_narrow_a8ed,
    .down-aa8e,
    .component_easy_1bab {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .list_thick_b39f {
        background: none;
    }
}

/* Providers Section */
.tertiary_7bef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-mini-bc03 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-mini-bc03 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary-mini-bc03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_stale_14d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_stale_14d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-3791 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hot-464f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail-7fad {
    list-style: none;
    padding: 0;
}

.detail-7fad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.detail-7fad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.motion-cca7 {
    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);
}

.motion-cca7 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.last_e232 {
    padding: var(--section-padding);
}

.outline_short_ce52 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_short_ce52 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_wide_7101 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_wide_7101:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.heading_456f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.status-new-8c76 {
    display: flex;
    flex-direction: column;
}

.red-7b09 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.in_943c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notification-d9af {
    color: var(--accent-color);
}

.feature-steel-7756 {
    font-size: 1.25rem;
}

.inner_8039 {
    margin-bottom: 1rem;
}

.inner_8039 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.dropdown_simple_84ed {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.rough_6ee1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.label-rough-8bdc {
    text-align: center;
}

.shadow-9442 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component_8887 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.mini-40c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_d761 {
    margin: 2rem 0;
}

.list_f190 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.list_f190 .surface_4842 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-e3d4 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.advanced-dfed {
    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;
}

.advanced-dfed:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_pink_d822 {
    font-size: 2rem;
}

.title-8d8d {
    display: flex;
    flex-direction: column;
}

.pressed_421d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.mask_middle_1925 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.container-full-eb29 {
    padding: var(--section-padding);
}

.steel_cf4e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel_cf4e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steel_cf4e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle-2634 {
    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);
}

.middle-2634:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.middle-2634 .shadow-9442 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.middle-2634 .component_8887 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.middle-2634 .short-e504 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.media_simple_ce5b {
    margin-top: 4rem;
}

.module-medium-76d1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.notice_ea2e {
    overflow-x: auto;
}

.description_de6a {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.description_de6a thead {
    background: var(--accent-color);
}

.description_de6a th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.description_de6a td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.description_de6a tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.description_de6a tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.input_6228 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-advanced-e4fd {
    max-width: 900px;
    margin: 0 auto;
}

.first-7acd {
    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);
}

.first-7acd:hover {
    border-color: var(--accent-color);
}

.element_full_632d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.element_full_632d h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hidden-b894 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.first-7acd.fn-active-7b7b .hidden-b894 {
    transform: rotate(45deg);
}

.article_fresh_9ea4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.first-7acd.fn-active-7b7b .article_fresh_9ea4 {
    max-height: 1000px;
}

.article_fresh_9ea4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.column-out-d8ae {
    padding: var(--section-padding);
}

.carousel_50bb {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.disabled_upper_9f16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_green_bf08 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_green_bf08 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stale-6e9a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_next_ab0b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gold_72c1 {
    font-size: 2rem;
}

.warm_490b {
    color: var(--text-white);
    margin: 0;
}

.fast_4882 {
    list-style: none;
    padding: 0;
}

.fast_4882 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast_4882 li:last-child {
    border-bottom: none;
}

.info-hot-8736 {
    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);
}

.info-hot-8736 p {
    color: var(--success-color);
    margin: 0;
}

.shade_c9a5 {
    margin-top: 3rem;
}

.media-0106 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active-clean-3aac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active-clean-3aac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-b60c {
    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);
}

.badge_3da8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-b60c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.content_medium_38c3 {
    padding: var(--section-padding);
}

.selected_33f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected_33f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown-25a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown-25a1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge_32fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stone-8a01 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.small_39f9 {
    flex: 1;
}

.item-f1b1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.focused-e3d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dropdown_b385 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-108d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right-108d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.fluid-9b31 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.input_steel_eac5 {
    padding: var(--section-padding);
}

.search-9a28 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.border-410a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-410a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_682b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-228f, .modal_brown_2599, .hot-27af {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hot-27af {
    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 */
.bronze_1ed7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_active_2b33 {
    margin: 2rem 0;
}

.item-wood-520d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new_eebf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slider_2cbc {
    list-style: none;
    padding: 0;
}

.slider_2cbc 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;
}

.slider_2cbc li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.slider_2cbc li:last-child {
    border-bottom: none;
}

.image-slow-37f8 {
    text-align: center;
    margin-top: 2rem;
}

.picture-thick-2eea {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.picture-south-3a4d {
    padding: var(--section-padding);
}

.prev_64e9 {
    margin: 2rem 0;
}

.slider-6cb6 {
    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) {
    .slider-6cb6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slider-6cb6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-b778 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.fast-98bc {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.mask_copper_ec4c {
    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;
}

.component-pressed-0779 {
    flex: 1;
}

.tag_f58e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.glass_63fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.text_24c6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.upper-2c6c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .upper-2c6c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.button_selected_d71a {
    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);
}

.button_selected_d71a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_selected_d71a .shadow-9442 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button_selected_d71a .component_8887 {
    color: var(--text-gray);
    font-size: 1rem;
}

.main-hard-ce5a {
    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);
}

.bright_6e1e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.bright_6e1e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.old_0aab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .old_0aab {
        grid-template-columns: 1fr 1fr;
    }
}

.picture_new_d33c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-a3e0 {
    margin-bottom: 1.5rem;
}

.texture-a3e0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.texture-a3e0 input,
.texture-a3e0 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;
}

.texture-a3e0 input:focus,
.texture-a3e0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph-west-8edf {
    width: 100%;
    margin-top: 1rem;
}

.accent_advanced_bedd {
    display: flex;
    align-items: center;
}

.avatar-middle-612d {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.frame-d3f9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.lite_7173 {
    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;
}

.primary-d668 {
    color: var(--text-gray);
}

.fixed-5145 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.red-03be {
    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);
}

.red-03be p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.dropdown-b9f5 {
    margin-top: 3rem;
}

.overlay_04d5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hard_4ca8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-2f66 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.lower_7056 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower_7056:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.content-down-857b {
    padding: var(--section-padding);
}

.notice_tiny_96c3 {
    margin: 2rem 0;
}

.thumbnail-117a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gas-2936 {
    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;
}

.gas-2936:hover, .gas-2936.fn-active-7b7b {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.large-9204 {
    display: none;
}

.large-9204.fn-active-7b7b {
    display: block;
}

.cool-027e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_7f96 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gradient-dc87 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.gradient-dc87 ul {
    list-style: none;
    padding: 0;
}

.gradient-dc87 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gradient-dc87 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mask_7458 {
    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 */
.center_bb4d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-current-2b04 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_bce1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-0221 {
    color: var(--accent-color);
    margin: 0;
}

.hot-f5a0 {
    display: flex;
    gap: 1.5rem;
}

.middle_1892 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.upper-d51f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.wide-7e45 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.wide-7e45.bronze-46d8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.wide-7e45.secondary_silver_fb60 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.wide-7e45.fresh_d2c5 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal-silver-ab80 {
    margin-top: 2rem;
}

.title-liquid-5737 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slow_e9a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .slow_e9a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_1ae0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.highlight-9de3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.heading-middle-7199 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.chip_down_6ce8 {
    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 */
.box-cool-f8b0 {
    padding: var(--section-padding);
}

.paragraph_medium_d771 {
    margin: 2rem 0;
}

.gold-d85b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.main_c15e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.under-7e56 {
    list-style: none;
    padding: 0;
}

.under-7e56 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;
}

.under-7e56 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.under-7e56 li:last-child {
    border-bottom: none;
}

.pressed-69a3 {
    margin: 2rem 0;
}

.avatar_mini_1adf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list-fast-805d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .list-fast-805d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-ff88 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-large-56ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dirty-73de {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sort_2d67 {
    margin-top: 2rem;
}

.filter-full-affa {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.new_bb93 {
    list-style: none;
    padding: 0;
}

.summary_24b2 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.summary_24b2 a {
    color: var(--accent-color);
    text-decoration: none;
}

.summary_24b2 a:hover {
    text-decoration: underline;
}

.action_ec81 {
    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 */
.orange-c96d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_stale_43e5 {
    margin: 2rem 0;
}

.focused_8178 {
    margin-bottom: 3rem;
}

.focused_8178 .new_eebf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.notification_clean_f94a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.column-lower-504d {
    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);
}

.column-lower-504d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.button_2d24 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .button_2d24 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_0a9b {
    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 */
.progress-short-be01 {
    padding: var(--section-padding);
}

.row_db07 {
    margin: 2rem 0;
}

.carousel-a767 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled-white-1b37 {
    overflow-x: auto;
    margin: 2rem 0;
}

.outline_58af {
    background: rgba(6, 182, 212, 0.1) !important;
}

.container_over_f9a8 {
    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;
}

.video_76f7 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.action_f455 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .action_f455 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-181a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-181a .surface_4842 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed-181a .icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover_south_d696 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.image_left_5f03 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-adc5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-adc5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.yellow-fd16 {
    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;
}

.yellow-fd16:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.item_hard_b1d4 {
    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);
}

.overlay_20ff {
    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;
}

.primary-warm-1186 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link-lower-3632 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.feature-e814 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.new_4f34 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-light-74a0 {
    color: var(--text-white);
    font-weight: 600;
}

.dark_c875 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-2ed7 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-2ed7 .link_3206 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu_in_ebcf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu_in_ebcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.over_ac18 {
    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);
}

.over_ac18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.over_ac18 .shadow-9442 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.over_ac18 .component_8887 {
    color: var(--text-gray);
    font-size: 1rem;
}

.text_short_1dbd {
    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);
}

.solid_e157 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.solid_e157 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.heading_8006 {
    margin: 2rem 0;
}

.backdrop-dynamic-d3b7 {
    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);
}

.backdrop-dynamic-d3b7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.article_lite_9a36 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.north_2507 {
    flex: 1;
}

.mask-f227 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark_a34e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.popup-9343 {
    margin: 2rem 0;
}

.status_1266 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_1266 .icon_3cbd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.status_1266 .element_focused_3be5 {
    color: var(--text-gray);
    margin: 0;
}

.plasma-236e {
    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);
}

.plasma-236e .hero-6a3a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hover_south_d696 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.text_5959 {
    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;
}

.active-full-be38 {
    flex: 1;
}

.message_upper_bd2b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.link-e75b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.highlight-fe97 {
    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;
}

.slow-7cd4 {
    flex: 1;
}

.input-pro-ac4a {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cool_7722 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.shadow-8eee {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.paragraph_4f52 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.green-e426 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.green-e426 .link_3206 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.lite_2098 {
    margin-top: 2rem;
}

.lite_2098 .media-0106 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.copper-ac56 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-lite-c7b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label-lite-c7b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-lite-c7b9 .label-rough-8bdc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-cbbc {
    margin: 2rem 0;
}

.picture_f7ab {
    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 */
.picture-west-d5a1 {
    padding: var(--section-padding);
}

.element_e86d {
    margin-top: 1rem;
}

.prev-8dd7 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.prev-8dd7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.prev-8dd7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.detail-501b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-8e33 {
    margin: 2rem 0;
}

.focus_c424 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.video_clean_d358 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.caption_1892 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.hot_d601 {
    margin: 2rem 0;
}

.accordion-simple-b106 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accordion-simple-b106 .new_eebf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper_6759 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper_6759 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview_c63e {
    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);
}

.modal_f5d0 {
    color: var(--text-white);
    font-weight: 600;
}

.header-91ff {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.wrapper_fbfe {
    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);
}

.wrapper_fbfe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.accent-upper-6d9c {
    padding: var(--section-padding);
}

.texture-3951 {
    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;
}

.texture-3951:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.breadcrumb-03b9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-03b9 .badge_3da8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb-03b9 .module_163d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background-5b4d {
    flex: 1;
}

.background-focused-e507 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-upper-ea66 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-upper-ea66 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.text-upper-ea66 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pro-812f {
    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);
}

.pro-812f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pro-812f strong {
    color: var(--warning-color);
}

/* Slots Section */
.plasma-03aa {
    padding: var(--section-padding);
}

.outer-5c56 {
    margin: 2rem 0;
}

/* Table Games Section */
.info-green-10c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_498d {
    margin: 2rem 0;
}

.panel-64a8 {
    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);
}

.panel-64a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.panel-64a8 .column_fea4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-64a8 .alert_new_3fab {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tabs-rough-4170 {
    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);
}

.tabs-rough-4170 .hero-6a3a {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.frame-large-dbdb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_huge_6729 {
    margin: 2rem 0;
}

.fixed-07c1 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_64d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_6e20 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip_middle_2646 {
    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);
}

.chip_middle_2646:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.chip_middle_2646.fn-active-7b7b {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-2e23 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.secondary-paper-76cb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary-paper-76cb strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.medium_506b {
    padding: var(--section-padding);
}

.filter_simple_a7e0 {
    margin: 2rem 0;
}

.down_587f {
    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);
}

.down_587f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .down_587f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.progress_clean_ecc8 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.menu_e2af {
    flex: 1;
}

.form_c8c3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_933d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shadow-current-74ca {
    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;
}

.accent_0f64 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice_2eab {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.solid-286e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern_ad79 {
    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;
}

.pattern_ad79:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slow-89be {
    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);
}

.alert-1245 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert-1245 strong {
    color: var(--accent-color);
}

/* New Games Section */
.right-84dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_8a46 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading_8a46 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading_8a46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-fc6d {
    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;
}

.article-fc6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.list-6898 {
    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;
}

.surface-1ee6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.dropdown_b689 {
    font-size: 2rem;
}

.sort-left-1430 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tooltip_9e59 {
    flex: 1;
}

.in-2fba {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.lite_e641 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.image-easy-0d52 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background_plasma_4f98 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.notification_action_1ed9 {
    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;
}

.notification_a5f4 {
    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;
}

.notification_a5f4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.block-5afe {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_current_d4b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon_2590 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .icon_2590 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_81e0 {
    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);
}

.soft_188d {
    color: var(--text-white);
    font-weight: 600;
}

.feature_e9a5 {
    color: var(--accent-color);
    font-weight: 600;
}

.in-9f55 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.in-9f55 strong {
    color: var(--accent-color);
}

/* Security Section */
.new-e9a0 {
    padding: var(--section-padding);
}

/* Benefits Section */
.red-8c67 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.header_8cf3 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.red_2ccc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_paper_eeb7 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.tabs-lower-65f6 {
    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) {
    .tabs-lower-65f6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tabs-lower-65f6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs-lower-65f6 .highlight-fe97 {
    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;
}

.tabs-lower-65f6 .slow-7cd4 {
    flex: 1;
}

.tabs-lower-65f6 .input-pro-ac4a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tabs-lower-65f6 .cool_7722 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.info_cool_ade7 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_cool_ade7 .disabled_static_5581 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info_cool_ade7 .avatar_mini_8b27 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_cool_ade7 .avatar_mini_8b27 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info_cool_ade7 .avatar_mini_8b27 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.thick-5ade {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.image_c04f {
    padding: var(--section-padding);
}

.logo_brown_75d2 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .logo_brown_75d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron-08f2 {
    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);
}

.iron-08f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.iron-08f2 .accordion-fluid-2129 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-08f2 .alert_yellow_2fe7 {
    flex: 1;
}

.iron-08f2 .cold-cf35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron-08f2 .wide-c6ee {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-plasma-6e19 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-plasma-6e19 .nav_c566 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-plasma-6e19 .notice_c19a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.slider-plasma-6e19 .notice_c19a 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);
}

.slider-plasma-6e19 .notice_c19a li:last-child {
    border-bottom: none;
}

.slider-plasma-6e19 .notice_c19a 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;
}

.slider-plasma-6e19 .notice_c19a li strong {
    color: var(--text-white);
}

.highlight_1f9b {
    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);
}

.highlight_1f9b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight_1f9b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.description-short-2f8b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-2178 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hard-2178 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card_rough_4add {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_rough_4add:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal_blue_4732 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-6d14 {
    font-size: 2rem;
}

.module_ccfb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.stale_69cf {
    flex: 1;
}

.highlight-fluid-9762 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-fluid-9762 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlight-fluid-9762 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.texture_b7f6 {
    margin-top: 3rem;
}

.gold-d85b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.main_c15e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.under-7e56 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.under-7e56 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.under-7e56 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.under-7e56 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.form_b445 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_motion_1545 {
    margin: 2rem 0;
}

.bronze-ab34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.bronze-ab34 .new_eebf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu_solid_7e93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .menu_solid_7e93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bottom-0a0e {
    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);
}

.bottom-0a0e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pattern-03d8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.full_1205 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pro-8969 {
    padding: var(--section-padding);
}

.message-23f2 {
    margin: 2rem 0;
}

.focused-e7d0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .focused-e7d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focused-e7d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_2c74 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.liquid_2c74:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.description-a362 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.motion-97c4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.block-plasma-0ae5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.block-plasma-0ae5.sidebar_460d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.preview-silver-426a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.card-630b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.current-b226 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled_white_133f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.avatar_large_e029 {
    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);
}

.avatar_large_e029 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar_large_e029 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.pattern_lite_ea6f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_2144 {
    margin: 2rem 0;
}

.sidebar-current-ee63 {
    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) {
    .sidebar-current-ee63 {
        flex-direction: column;
        gap: 1rem;
    }
}

.sidebar-current-ee63:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar-current-ee63::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);
}

.pressed-aea7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.layout_5e93 {
    flex: 1;
}

.grid_large_08f4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.complex-cb52 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex-cb52 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.image_over_d9af {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-abb6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture_solid_66d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .picture_solid_66d1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_93ea {
    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);
}

.top_5947 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.module_wood_3a1e {
    flex: 1;
}

.row_inner_fabc {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.aside-e9a7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status_north_e34f {
    margin-top: 2rem;
    text-align: center;
}

.form-5a08 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form-5a08 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.primary_5a39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_5a39 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-e401 {
    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);
}

.gas-e401:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas-e401 .preview_9640 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas-e401 .gas-d160 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.gas-e401 .avatar_next_7671 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.gas-e401 .backdrop-medium-82d5 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.gallery-cold-4476 {
    padding: var(--section-padding);
}

.alert-5192 .avatar-cc56 {
    flex: 1;
}

/* Promo Calendar Section */
.content-fast-9650 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_glass_6a50 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_glass_6a50 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-79c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_pro_46f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.warm_9673 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shade-e933 {
    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);
}

.tiny_be86 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern_ab60 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.main-8c6f {
    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);
}

.main-8c6f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-8c6f strong {
    color: var(--accent-color);
}

/* Requirements Section */
.main-up-b6a0 {
    padding: var(--section-padding);
}

.component-03fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component-03fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-571b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_54c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.static-710d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-710d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar_8ec7 {
    margin-top: 3rem;
}

.avatar_8ec7 .gold-d85b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar_8ec7 .main_c15e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_8ec7 .under-7e56 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.avatar_8ec7 .under-7e56 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.avatar_8ec7 .under-7e56 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.avatar_8ec7 .under-7e56 li strong {
    color: var(--warning-color);
}

.image-stale-5224 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image-stale-5224 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.detail-8eb5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_42b7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current_42b7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_ebb9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_ebb9 .new_eebf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.info_pink_a350 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagination_f1e1 {
    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);
}

.pagination_f1e1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.top-8df1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim-91ea {
    flex: 1;
}

.full_2317 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.image_liquid_eda2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gallery-purple-4fc4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.nav-c05b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pressed_75b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .pressed_75b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_active_94fa {
    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);
}

.surface_active_94fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-purple-84dc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.focus-a324 {
    color: var(--text-gray);
    font-size: 1rem;
}

.bright_6e1e {
    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);
}

.gallery_silver_21e7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gallery_silver_21e7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.bright_fe75 { 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; }
.warm-5e2d, .prev-05f9 { max-width:100%; height:auto; }

.focus_copper_9c45, .texture_cd80, .small_35bb { white-space:normal; }

.soft_e910,
.soft_f92e,
.block_c476,
.primary_5a39,
.popup-9343,
.blue-f79e {
  flex-wrap:wrap;
}

[class*="grid"],
.pressed_75b5,
.focused-e7d0,
.lite-0b10 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.list_thick_b39f img,
.soft_f92e img,
.texture_black_55c5 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.paragraph-466a, .huge-b4b7,
.overlay-liquid-f7ea, .article-412a {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.notice_ea2e { width:100%; overflow-x:auto; }
.notice_ea2e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.secondary-mini-bc03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .secondary-mini-bc03 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.title_stale_14d3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.steel_cf4e,
.input-18ba,
.background-stale-c0d7,
.first-e645,
.upper-2c6c,
.pressed_75b5,
.focused-e7d0,
.lite-0b10,
.hover_1725,
.filter_simple_a7e0,
.secondary-mini-bc03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .steel_cf4e,
  .input-18ba,
  .background-stale-c0d7,
  .first-e645,
  .upper-2c6c,
  .pressed_75b5,
  .focused-e7d0,
  .lite-0b10,
  .hover_1725,
  .filter_simple_a7e0,
  .secondary-mini-bc03 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.middle-2634,
.button_selected_d71a,
.surface_active_94fa,
.center_4572,
.liquid_2c74,
.column_middle_1992,
.down_587f,
.title_stale_14d3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.center-e5e6,
.sort_gas_ff36,
.modal_pink_ef40 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.center-e5e6 > *,
.sort_gas_ff36 > *,
.modal_pink_ef40 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ce97 */
.widget-item-l7 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
