/* {$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;
}

.white-31e1 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hidden-solid-e389 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hidden-solid-e389 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hidden-solid-e389 {
        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 */
.left-7be1 {
    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);
}

.grid-light-6053 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .grid-light-6053 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .grid-hot-0a36 {
        grid-column: 1;
    }
    
    .gradient-af42 {
        grid-column: 2;
    }
    
    .static-f380 {
        grid-column: 3;
    }
}

.grid-hot-0a36 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.grid-hot-0a36:hover img {
    transform: scale(1.05);
}

/* Navigation */
.shade_09aa {
    display: none;
}

@media (min-width: 1024px) {
    .shade_09aa {
        display: block;
    }
}

/* Grouped Navigation */
.message-a836 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.message-a82c {
    position: relative;
}

.lite_0ec0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.message-a82c .sidebar-41ac {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.sidebar-41ac {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.alert-lite-ef63 {
    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;
}

.alert-lite-ef63:hover,
.alert-lite-ef63.fn-active-183f {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.accordion-20fd {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .accordion-20fd {
        display: flex;
    }
}

/* Mobile Register Button */
.gradient-af42 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient-af42 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.light_f714 {
    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;
}

.light_f714::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 */
.static-f380 {
    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) {
    .static-f380 {
        display: none;
    }
}

.static-f380 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.static-f380.fn-active-183f span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.static-f380.fn-active-183f span:nth-child(2) {
    opacity: 0;
}

.static-f380.fn-active-183f span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.content_tall_4d4d {
    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;
}

.content_tall_4d4d.fn-active-183f {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.pink-42a5 {
    overflow: hidden;
}

.fresh-c3fc {
    list-style: none;
    padding: 0.75rem 0;
}

.feature-148a {
    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;
}

.feature-148a:hover,
.feature-148a.fn-active-183f {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.feature-148a.detail-north-1ca1 {
    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;
}

.feature-148a.detail-north-1ca1::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 */
.form_605b {
    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;
}

.static_93d0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.static_93d0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.article_current_7150 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.article_current_7150:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.progress-e98b {
    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;
}

.progress-e98b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.label_2555 {
    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;
}

.form_upper_ce12 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.form_upper_ce12:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.grid-black-8468 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.grid-black-8468:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.title-0829 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.title-0829: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);
}

.medium_fe03 {
    font-size: 1em;
    font-weight: 700;
}

.dim_b240 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.stale_c4a8 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.stale_c4a8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.item-5e74 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item-5e74 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.selected_7116 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wrapper_pink_8069 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.row_1fa9 {
    margin-bottom: 2rem;
}

.warm_d6d5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .warm_d6d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_small_3df7 {
    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);
}

.description_7015 {
    font-size: 1.5rem;
}

.current-eaad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.table_inner_7961 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wide-66a1 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.wide-66a1:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hidden_clean_d639 {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-1f2e {
    margin-bottom: 1rem;
}

.west_e6e1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.column-dim-7791 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .column-dim-7791 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .column-dim-7791.header_4495 {
        direction: rtl;
    }
    
    .column-dim-7791.header_4495 > * {
        direction: ltr;
    }
}

.banner_679b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.banner_679b:first-child {
    margin-top: 0;
}

.container-a100 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article_current_9949 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.article_current_9949:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.primary_d134 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_d134 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-47de {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_under_70e5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.disabled-pressed-a768 {
    list-style: none;
}

.disabled-pressed-a768 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-pressed-a768 li:last-child {
    border-bottom: none;
}

/* Games Features */
.description-705e {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.module-ad30 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tabs_af9c {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.south-f1af {
    margin: 2rem 0;
}

.upper_52f2 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.header_gas_2a9f {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.cool_f5cb {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.motion_4bd9 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.chip-2e02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-2e02 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame_9af3 {
    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);
}

.frame_9af3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fast-7662 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lite_ade6 {
    font-size: 1.5rem;
}

.button_west_8939 {
    color: var(--accent-color);
    margin: 0;
}

.wood-876a {
    list-style: none;
}

.wood-876a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.wood-876a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.media_00f9 {
    margin: 2rem 0;
}

.wide-9872 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.description-dynamic-7e25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .description-dynamic-7e25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-0c5c {
    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);
}

.menu_53b2 {
    font-size: 1.25rem;
}

.lite-54fe {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hover-5d41,
.mask_over_c8c0 {
    text-align: center;
    margin: 2rem 0;
}

.disabled-9b2d,
.rough-e879 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.sidebar-bottom-1e1b {
    margin: 2rem 0;
    text-align: center;
}

.sort_7b34 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sort_7b34::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;
}

.blue-1cdb {
    position: relative;
    z-index: 1;
}

.fresh-8039 {
    margin-bottom: 1rem;
}

.title_thick_1338 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-118f {
    margin-bottom: 3rem;
}

.highlight-ce69 {
    margin-top: 3rem;
}

.tall-5082 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tall-5082 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-5082 .badge_small_3df7 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media-purple-0f3f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.silver_fc7d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.warm-f918 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hard_c206 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hard_c206 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_c206 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.steel_73d5 {
    margin-bottom: 1rem;
}

.element-warm-1cb3 img {
    margin-bottom: 1rem;
}

.action_390f {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-684a {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.header-inner-3cba {
    list-style: none;
}

.header-inner-3cba li {
    margin-bottom: 0.5rem;
}

.header-inner-3cba a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-inner-3cba a:hover {
    color: var(--accent-color);
}

.wrapper-c235 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.orange_87d9 {
    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);
}

.orange_87d9:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.description_orange_62ed {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.description_orange_62ed p {
    margin-bottom: 0.25rem;
}

.disabled-2d41 {
    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) {
    .disabled-2d41 {
        flex-direction: row;
    }
}

.shadow_ba11 {
    text-align: center;
}

@media (min-width: 768px) {
    .shadow_ba11 {
        text-align: left;
    }
}

.shadow_ba11 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.component_eec3 {
    font-size: 0.75rem !important;
}

.thumbnail-hot-1587 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.white-fb6c {
    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);
    }
}

.stale-94f0 {
    animation: fadeInUp 0.6s ease-out;
}

.caption_6c8f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.over_98d7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over_98d7 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.slider-focused-5832 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-focused-5832 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south-8f17 {
    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);
}

.south-8f17 .tabs_af9c {
    font-size: 1.25rem;
}

.south-8f17 .description-north-ef47 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.logo-tiny-5dbe {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-tiny-5dbe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small-68d2 {
    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);
}

.small-68d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_6c1d {
    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);
}

.iron-1d17 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb_simple_9c8e {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-3e59 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-motion-5777 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media-motion-5777 .list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media-motion-5777 .stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-40c4 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north-35d6 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.north-35d6 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.north-35d6 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.mini_0ff2 {
    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);
}

.gallery_c139 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.row-5d3d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.row-5d3d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row-5d3d input {
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.row-5d3d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.row-5d3d input::placeholder {
    color: var(--text-muted);
}

.search_stone_3cd0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-968f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.sort-968f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.preview_inner_0045 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.preview_inner_0045:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.description-dynamic-7e25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-dynamic-7e25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-0c5c {
    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);
}

.accordion-0c5c .menu_53b2 {
    font-size: 1.25rem;
}

.accordion-0c5c .lite-54fe {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.info_9757 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_35d3 {
    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);
}

.smooth_35d3 .tabs_af9c {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_35d3 .list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth_35d3 .stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-7009 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-79da {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component-79da .border_purple_2ce5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-79da .module-61da {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_37b1 {
    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);
}

.box-69bd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box-69bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas_8d8a {
    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);
}

.gas_8d8a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-narrow-cf96 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.current-76a7 {
    flex: 1;
}

.pattern_02f5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-gold-3c6a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mini_86e5 {
    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);
}

.mini_86e5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.gallery-last-1ccc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-last-1ccc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-east-a55a {
    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);
}

.notification-east-a55a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-96e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast_7863 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hovered_ca53 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focus-a319 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.texture-0e32 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.prev-957e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-stale-2fd6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.grid-stale-2fd6 .text_d360 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-stale-2fd6 .primary-c756 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-67bf {
    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);
}

.column_87c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-58c5 {
    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);
}

.warm-58c5 .tabs_af9c {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-58c5 .list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm-58c5 .stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-dynamic-70fd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-dynamic-70fd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty-a671 {
    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);
}

.dirty-a671:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.detail-f790 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-f790 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-4a63 {
    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);
}

.card-4a63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_15fd {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-soft-08fa {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header_gas_2a9f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.gallery-c97d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.popup-hovered-1b7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-white-142a {
    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);
}

.popup-white-142a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_2598 {
    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);
}

.hidden-tall-e122 {
    flex: 1;
}

.widget_bronze_58a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.under_9d3c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.accent-8f55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-6e69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_static_dab3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_static_dab3 .border_purple_2ce5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_static_dab3 .module-61da {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_over_c8c0 {
    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);
}

.plasma_4168 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_4168 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.east_2468 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_2468 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_middle_4d6c {
    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);
}

.photo_middle_4d6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-fluid-2165 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-top-74e8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper-2702 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination-silver-cabf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern_c4c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_black_c0af {
    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);
}

.texture_24bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_pink_f7b4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column_7cd7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_87c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-58c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.warm-58c5 .list-cc59 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-58c5 .stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_7c9a {
    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);
}

.link-525b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link-525b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-525b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_cold_e429 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.heading_cold_e429:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-first-0bf8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_82d8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hot_9578 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.fluid_2e5a {
    padding: 1.5rem;
}

.hard_1180 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.copper_9107 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper_9107 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;
}

.copper_9107 li:last-child {
    border-bottom: none;
}

.copper_9107 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.card_a634 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_a634 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_15a6 {
    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);
}

.up_15a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_b940 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_017a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last-ea28 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.grid_left_fd08 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_3757 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-a261 {
    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);
}

.secondary_804a {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_49e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.last-e670 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_92ce {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bottom_d04f {
    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);
}

.gradient_yellow_97b6 {
    text-align: center;
}

.panel_92b0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.glass-e14e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard-51ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header-rough-6174 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-rough-6174 .list-cc59 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-rough-6174 .stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_47d0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .narrow_47d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .narrow_47d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_center_c2cc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.widget_center_c2cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-down-7d32 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.next_e433 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.list-cc59 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.under_6760 {
    padding: 1.5rem;
}

.stone_106f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warm-34c3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warm-34c3 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;
}

.warm-34c3 li:last-child {
    border-bottom: none;
}

.warm-34c3 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.article-3ace {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.row-dc94 {
    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);
}

.row-dc94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-static-7e1e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_c460 {
    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);
}

.primary_6c1d {
    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;
}

.iron-1d17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_simple_9c8e {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_liquid_9f31 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-paper-58a6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_848c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.medium-4b0c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.border_smooth_7239 {
    display: flex;
    gap: 1rem;
}

.border_smooth_7239 .red_f48f {
    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;
}

.upper-e084 {
    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);
}

.icon-a5c8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.heading-4ec3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-4ec3 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;
}

.heading-4ec3 li:last-child {
    border-bottom: none;
}

.heading-4ec3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.aside-ea23 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-ea23 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-ea23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-east-50a4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.info-east-50a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_over_859f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.brown_040d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.text_d360 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.section-out-f153 {
    font-size: 1rem;
}

.gas-5829 {
    padding: 1.5rem;
}

.primary-c756 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.solid_6b2e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.solid_6b2e .gradient_yellow_97b6 {
    text-align: center;
}

.solid_6b2e .glass-e14e {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.solid_6b2e .top_93e3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.alert-wide-42d5 {
    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);
}

.alert-wide-42d5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tooltip-dark-e861 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-dark-e861 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_pink_82ff {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description_pink_82ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-upper-ffac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_stale_df85 {
    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);
}

.mini-7029 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_top_bfe6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.article-static-7210 {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-b2e8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption_54d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_8781 {
    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);
}

.message-6483 {
    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;
}

.message-6483.accent-mini-3115 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.message-6483.avatar_copper_5958 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.message-6483.gallery_d092 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.message-6483.over-c7b4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.message-6483.advanced-5564 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.bronze-298e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar-dcce {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-fda1 {
    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);
}

.menu_1f72 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status-7009 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-7009 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;
}

.status-7009 li:last-child {
    border-bottom: none;
}

.status-7009 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.label_3350 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label_3350 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label_3350 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_light_09a0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.component_light_09a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_light_09a0.notification-right-814d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .component_light_09a0.notification-right-814d {
        grid-column: span 3;
    }
}

.solid-5673 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.component_light_09a0.notification-right-814d .solid-5673 {
    background: rgba(6, 182, 212, 0.1);
}

.notification-4bdc {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.iron_9266 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.component_light_09a0.notification-right-814d .iron_9266 {
    color: var(--info-color);
}

.liquid-83d6 {
    padding: 1.5rem;
    text-align: center;
}

.column_center_e886 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.component_light_09a0.notification-right-814d .column_center_e886 {
    color: var(--info-color);
}

.grid-advanced-0294 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.info-steel-04e9 {
    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 */
.mini-8d2e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-8d2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_7cff {
    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);
}

.dirty_7cff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_65a2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_35d3 {
    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);
}

.menu_53b2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_5972 {
    flex: 1;
}

.wide-9872 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel_e1a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-3f1a {
    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);
}

.summary_paper_9e00 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hidden_hot_cf86 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.white-fb6c {
    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);
}

.overlay_9462 {
  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);
}

.overlay_9462 .gradient_yellow_97b6 {
    text-align: center;
}

.overlay_9462 .panel_92b0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.overlay_9462 .glass-e14e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-caf9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_center_088d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-51cf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-c9ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.out-142b {
    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);
}

.shadow_3405 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_8b91 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_e1e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_e1e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_e1e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_fbfa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs_fbfa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-900f {
    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);
}

.notice-cold-049c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mini_141b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.media_solid_76ba {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media_solid_76ba.section_full_eb57 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.media_solid_76ba.disabled-1f4b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.media_solid_76ba.warm-4c84 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.grid_new_0ebe {
    padding: 1.5rem;
    text-align: center;
}

.solid_bfd9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture_red_8109 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.picture_red_8109 .preview-2c98 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.notification-center-4008 {
    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);
}

.notification-center-4008:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.purple_f765 {
  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);
}

.layout_fluid_16b0 {
    text-align: center;
}

.layout_fluid_16b0 .panel_92b0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.layout_fluid_16b0 .glass-e14e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.input-3986 { text-align: center; }
.widget-2b6a { text-align: left; }
.down-b977 { text-align: right; }

.mini_7976 { margin-bottom: 0; }
.notice-d7a1 { margin-bottom: 0.5rem; }
.carousel_22dc { margin-bottom: 1rem; }
.column-silver-8a9c { margin-bottom: 1.5rem; }
.pro-524e { margin-bottom: 2rem; }

.focus_7141 { margin-top: 0; }
.gold-eb82 { margin-top: 0.5rem; }
.accordion_gold_7c89 { margin-top: 1rem; }
.wide_e557 { margin-top: 1.5rem; }
.steel_812f { margin-top: 2rem; }

.fn-hidden-183f { display: none; }
.fn-visible-183f { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .stale_c4a8 {
        padding: 6rem 0 3rem;
    }
    
    .item-5e74 {
        text-align: center;
    }
    
    .column-dim-7791 {
        text-align: center;
    }
    
    .warm_d6d5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .left-7be1,
    .content_tall_4d4d,
    .sort_7b34,
    .warm-f918 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .stale_c4a8 {
        background: none;
    }
}

/* Providers Section */
.gold-13cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-9300 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-9300 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-9300 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-prev-8938 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline-prev-8938:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-537e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pro-ae8b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-bad1 {
    list-style: none;
    padding: 0;
}

.mask-bad1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask-bad1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.outline_bronze_a32e {
    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);
}

.outline_bronze_a32e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.list_2c2c {
    padding: var(--section-padding);
}

.banner_right_ee33 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_right_ee33 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-active-a19e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip-active-a19e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.smooth_4fdd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.thick_ad61 {
    display: flex;
    flex-direction: column;
}

.advanced_0616 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.slider_simple_1059 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.box-iron-4956 {
    color: var(--accent-color);
}

.pagination_57ac {
    font-size: 1.25rem;
}

.yellow-6ecc {
    margin-bottom: 1rem;
}

.yellow-6ecc p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.last-55d8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.fixed-3fa6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.gradient_yellow_97b6 {
    text-align: center;
}

.panel_92b0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.glass-e14e {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.surface-2a0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_gold_9a58 {
    margin: 2rem 0;
}

.detail-4371 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.detail-4371 .tabs_af9c {
    font-size: 2rem;
    flex-shrink: 0;
}

.row_5f2f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.backdrop_91f3 {
    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;
}

.backdrop_91f3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_4908 {
    font-size: 2rem;
}

.list-under-9775 {
    display: flex;
    flex-direction: column;
}

.search_04fc {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.text_short_fd69 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.layout_large_312b {
    padding: var(--section-padding);
}

.menu_thick_4bd2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu_thick_4bd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu_thick_4bd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal_last_ea8e {
    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);
}

.modal_last_ea8e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal_last_ea8e .panel_92b0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.modal_last_ea8e .glass-e14e {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.modal_last_ea8e .upper-fae2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.top_d28b {
    margin-top: 4rem;
}

.right-1dc1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.hidden-short-c61e {
    overflow-x: auto;
}

.link_hard_f462 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.link_hard_f462 thead {
    background: var(--accent-color);
}

.link_hard_f462 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.link_hard_f462 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.link_hard_f462 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.link_hard_f462 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.secondary_short_3976 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_static_d7a6 {
    max-width: 900px;
    margin: 0 auto;
}

.fast_8552 {
    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);
}

.fast_8552:hover {
    border-color: var(--accent-color);
}

.simple_2036 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.simple_2036 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.preview-in-3352 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.fast_8552.fn-active-183f .preview-in-3352 {
    transform: rotate(45deg);
}

.dynamic_53ab {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.fast_8552.fn-active-183f .dynamic_53ab {
    max-height: 1000px;
}

.dynamic_53ab p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.image-54dd {
    padding: var(--section-padding);
}

.north-35d6 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.form_f064 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_2c00 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_2c00 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-wide-02c3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-aef4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery_6e12 {
    font-size: 2rem;
}

.slow-22e4 {
    color: var(--text-white);
    margin: 0;
}

.upper_5c47 {
    list-style: none;
    padding: 0;
}

.upper_5c47 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper_5c47 li:last-child {
    border-bottom: none;
}

.progress-4867 {
    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);
}

.progress-4867 p {
    color: var(--success-color);
    margin: 0;
}

.texture-cool-7d32 {
    margin-top: 3rem;
}

.icon-a5c8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.filter_inner_d28b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter_inner_d28b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.up-3375 {
    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);
}

.right_8e88 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.up-3375 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.active_over_b8b0 {
    padding: var(--section-padding);
}

.glass_7815 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_7815 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-first-3e3b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture-first-3e3b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.overlay-dim-d19d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-action-c4dc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.short_0758 {
    flex: 1;
}

.surface-2f34 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.simple_e746 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.surface-ce7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_cool_7e5b {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section_cool_7e5b:last-child {
    border-bottom: none;
}

/* Comparison Section */
.out_3de1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.gas-f93e {
    padding: var(--section-padding);
}

.search-next-7bd5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.background_2e2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_2e2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-a2d8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-39ac, .top-33c6, .alert_active_719c {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.alert_active_719c {
    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 */
.green-8884 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow-f848 {
    margin: 2rem 0;
}

.gradient-94f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-solid-de45 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-plasma-cc44 {
    list-style: none;
    padding: 0;
}

.column-plasma-cc44 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;
}

.column-plasma-cc44 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.column-plasma-cc44 li:last-child {
    border-bottom: none;
}

.badge-ab0d {
    text-align: center;
    margin-top: 2rem;
}

.top-215b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.icon_hot_e926 {
    padding: var(--section-padding);
}

.focused_3535 {
    margin: 2rem 0;
}

.banner_c960 {
    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) {
    .banner_c960 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.banner_c960:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.lower-3c4e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.notification_fast_a958 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.article-dynamic-f7a8 {
    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;
}

.tabs-ffa4 {
    flex: 1;
}

.active-a2a7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.static_55c2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.description-738d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.primary_upper_68ff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .primary_upper_68ff {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.disabled_686b {
    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);
}

.disabled_686b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_686b .panel_92b0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_686b .glass-e14e {
    color: var(--text-gray);
    font-size: 1rem;
}

.row-52e1 {
    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);
}

.accent-north-4237 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.accent-north-4237 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.content-54d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .content-54d1 {
        grid-template-columns: 1fr 1fr;
    }
}

.hover_5a33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_left_2025 {
    margin-bottom: 1.5rem;
}

.block_left_2025 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.block_left_2025 input,
.block_left_2025 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;
}

.block_left_2025 input:focus,
.block_left_2025 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.list_old_c0d5 {
    width: 100%;
    margin-top: 1rem;
}

.modal-a39b {
    display: flex;
    align-items: center;
}

.smooth-2f6d {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.steel-814b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.title-8bb9 {
    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;
}

.item-slow-e4d4 {
    color: var(--text-gray);
}

.article-pink-c44e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.easy_68e5 {
    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);
}

.easy_68e5 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.modal_active_f140 {
    margin-top: 3rem;
}

.module_slow_1a68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.input-hot-482b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-5b02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient_easy_936b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient_easy_936b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.iron_76c8 {
    padding: var(--section-padding);
}

.thumbnail-4b09 {
    margin: 2rem 0;
}

.shadow_2b10 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nav_344f {
    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;
}

.nav_344f:hover, .nav_344f.fn-active-183f {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.avatar-a975 {
    display: none;
}

.avatar-a975.fn-active-183f {
    display: block;
}

.wrapper_0aef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-stone-d08f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.solid_4b60 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.solid_4b60 ul {
    list-style: none;
    padding: 0;
}

.solid_4b60 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.solid_4b60 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.sidebar_inner_48c8 {
    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 */
.column-bronze-2b30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic-6f23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper-76ee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.content-center-55d9 {
    color: var(--accent-color);
    margin: 0;
}

.pattern-427a {
    display: flex;
    gap: 1.5rem;
}

.small_9b60 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent-f6aa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.breadcrumb_1ec1 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb_1ec1.column-9390 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.breadcrumb_1ec1.texture_fb41 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.breadcrumb_1ec1.paper-620f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.detail_6c95 {
    margin-top: 2rem;
}

.description_wood_a8b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.picture-slow-74d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .picture-slow-74d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-4f5a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.title-lite-55a2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.new_5426 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.basic-d6be {
    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 */
.notice_mini_bf66 {
    padding: var(--section-padding);
}

.upper_0a02 {
    margin: 2rem 0;
}

.tertiary_black_ede1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.dirty_fd70 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.chip-small-a8d5 {
    list-style: none;
    padding: 0;
}

.chip-small-a8d5 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;
}

.chip-small-a8d5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.chip-small-a8d5 li:last-child {
    border-bottom: none;
}

.last_cf3a {
    margin: 2rem 0;
}

.focus-pink-376d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.banner_7d9e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner_7d9e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-north-01b9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-ea6d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_tiny_8146 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.plasma_0ae1 {
    margin-top: 2rem;
}

.pattern_02f5 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.gas-63d0 {
    list-style: none;
    padding: 0;
}

.widget_large_fda8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.widget_large_fda8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.widget_large_fda8 a:hover {
    text-decoration: underline;
}

.element-right-4432 {
    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 */
.plasma_cc50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-9a41 {
    margin: 2rem 0;
}

.title-hovered-87d8 {
    margin-bottom: 3rem;
}

.title-hovered-87d8 .description-solid-de45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.last_027b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.new-0563 {
    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);
}

.new-0563:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.brown_c8de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .brown_c8de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_1980 {
    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 */
.texture-a107 {
    padding: var(--section-padding);
}

.bottom-f132 {
    margin: 2rem 0;
}

.easy-0317 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wood-fba0 {
    overflow-x: auto;
    margin: 2rem 0;
}

.paper_f3ff {
    background: rgba(6, 182, 212, 0.1) !important;
}

.block-cold-eb4e {
    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;
}

.status_lite_dc8f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.black-6a7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .black-6a7a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-action-28b4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-action-28b4 .tabs_af9c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.button-action-28b4 .list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.last_e17c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.bottom-809b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-072b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-072b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-8b8e {
    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;
}

.clean-8b8e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.chip_f112 {
    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);
}

.detail_afb3 {
    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;
}

.in-8723 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.plasma_e74a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.paper-7a2f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.modal_a44d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag_left_cfcf {
    color: var(--text-white);
    font-weight: 600;
}

.title-99b0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disabled-dark-6d45 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-dark-6d45 .red_f48f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notification_complex_e378 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification_complex_e378 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-c850 {
    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);
}

.left-c850:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.left-c850 .panel_92b0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.left-c850 .glass-e14e {
    color: var(--text-gray);
    font-size: 1rem;
}

.secondary_down_2e0e {
    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);
}

.focus-smooth-636b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focus-smooth-636b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.pattern_c4c3 {
    margin: 2rem 0;
}

.widget_black_c0af {
    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);
}

.widget_black_c0af:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.texture_24bf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown-560b {
    flex: 1;
}

.image_pink_f7b4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column_7cd7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.column_87c4 {
    margin: 2rem 0;
}

.warm-58c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-58c5 .list-cc59 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.warm-58c5 .stone_106f {
    color: var(--text-gray);
    margin: 0;
}

.secondary_7c9a {
    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);
}

.secondary_7c9a .disabled-9b2d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.last_e17c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.huge_2598 {
    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;
}

.hidden-tall-e122 {
    flex: 1;
}

.under_9d3c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.accent-8f55 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.primary_6c1d {
    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;
}

.center-d053 {
    flex: 1;
}

.iron-1d17 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.breadcrumb_simple_9c8e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.focus_848c {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.medium-4b0c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.border_smooth_7239 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.border_smooth_7239 .red_f48f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.upper-e084 {
    margin-top: 2rem;
}

.upper-e084 .icon-a5c8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.texture_last_433b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_d04f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .bottom_d04f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_d04f .gradient_yellow_97b6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-51ed {
    margin: 2rem 0;
}

.header-rough-6174 {
    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 */
.badge_13d4 {
    padding: var(--section-padding);
}

.under_6760 {
    margin-top: 1rem;
}

.warm-34c3 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.warm-34c3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.warm-34c3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.text-1f72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over-23d6 {
    margin: 2rem 0;
}

.tiny_fc35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.highlight_9f59 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.under_aa84 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.link_2682 {
    margin: 2rem 0;
}

.element-steel-45f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.element-steel-45f4 .description-solid-de45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background_tall_b57a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .background_tall_b57a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_7113 {
    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);
}

.dirty_830a {
    color: var(--text-white);
    font-weight: 600;
}

.north-8062 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hovered_73fb {
    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);
}

.hovered_73fb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.heading-prev-6499 {
    padding: var(--section-padding);
}

.progress_1470 {
    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;
}

.progress_1470:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.column-61c2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-61c2 .right_8e88 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-61c2 .simple_3240 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.sidebar-orange-c6d0 {
    flex: 1;
}

.progress-f208 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fixed_7c91 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed_7c91 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fixed_7c91 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.right-a884 {
    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);
}

.right-a884 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.right-a884 strong {
    color: var(--warning-color);
}

/* Slots Section */
.small_3728 {
    padding: var(--section-padding);
}

.texture-0e32 {
    margin: 2rem 0;
}

/* Table Games Section */
.sort-right-d5ed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-957e {
    margin: 2rem 0;
}

.grid-stale-2fd6 {
    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);
}

.grid-stale-2fd6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid-stale-2fd6 .text_d360 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-stale-2fd6 .primary-c756 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.row-67bf {
    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);
}

.row-67bf .disabled-9b2d {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.picture_stale_399f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma_3947 {
    margin: 2rem 0;
}

.section-de67 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-last-f26b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick_037c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.backdrop-97ae {
    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);
}

.backdrop-97ae:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.backdrop-97ae.fn-active-183f {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-narrow-ed9d {
    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);
}

.message_0886 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message_0886 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.search_brown_8737 {
    padding: var(--section-padding);
}

.old-89f8 {
    margin: 2rem 0;
}

.medium-60d5 {
    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);
}

.medium-60d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .medium-60d5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.summary_266f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tag_motion_7f68 {
    flex: 1;
}

.narrow_7183 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.caption-9bf9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notification-a5d4 {
    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;
}

.first_e406 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.active_b0dd {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.prev_e7a2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask-up-fa91 {
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.mask-up-fa91:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.box_7756 {
    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);
}

.silver-bcb0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.silver-bcb0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.thick-6604 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-a494 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask-a494 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask-a494 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-e91a {
    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;
}

.in-e91a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort-steel-91be {
    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;
}

.aside_8791 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.info_bright_77c0 {
    font-size: 2rem;
}

.overlay-f286 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.media-hard-3863 {
    flex: 1;
}

.focused_dc59 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.backdrop_63b4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.basic_723a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview_dim_9d03 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer_e102 {
    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;
}

.logo_4a11 {
    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;
}

.logo_4a11:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.left-f7bf {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-current-fae5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.over_3d20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .over_3d20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-4f1c {
    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);
}

.gold-d4f9 {
    color: var(--text-white);
    font-weight: 600;
}

.stone_4e12 {
    color: var(--accent-color);
    font-weight: 600;
}

.block_bronze_005b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.block_bronze_005b strong {
    color: var(--accent-color);
}

/* Security Section */
.pressed-a725 {
    padding: var(--section-padding);
}

/* Benefits Section */
.grid-old-4086 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.input-hard-a535 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.last_3a27 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_5f86 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.button_under_63ad {
    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) {
    .button_under_63ad {
        flex-direction: column;
        gap: 1rem;
    }
}

.button_under_63ad:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button_under_63ad .primary_6c1d {
    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;
}

.button_under_63ad .center-d053 {
    flex: 1;
}

.button_under_63ad .iron-1d17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.button_under_63ad .breadcrumb_simple_9c8e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.aside_dim_4f17 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_dim_4f17 .wide-9872 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_dim_4f17 .info_9757 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_dim_4f17 .info_9757 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.aside_dim_4f17 .info_9757 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border-mini-52f7 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dirty_6c52 {
    padding: var(--section-padding);
}

.preview_old_1f10 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .preview_old_1f10 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_2318 {
    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);
}

.stale_2318:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.stale_2318 .panel-tall-9255 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale_2318 .hidden-middle-f19b {
    flex: 1;
}

.stale_2318 .border_purple_2ce5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale_2318 .narrow-053a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.glass_c693 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_c693 .caption-8fc0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass_c693 .picture_5f9e {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.glass_c693 .picture_5f9e 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);
}

.glass_c693 .picture_5f9e li:last-child {
    border-bottom: none;
}

.glass_c693 .picture_5f9e 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;
}

.glass_c693 .picture_5f9e li strong {
    color: var(--text-white);
}

.center-e8c7 {
    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);
}

.center-e8c7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-e8c7 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hero_67a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-2a42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .progress-2a42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blue_f15f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.blue_f15f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.prev_f3d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-e9a0 {
    font-size: 2rem;
}

.static_3a74 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture_tiny_6c5a {
    flex: 1;
}

.secondary-right-afb6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-right-afb6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.secondary-right-afb6 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column-pro-0a09 {
    margin-top: 3rem;
}

.tertiary_black_ede1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dirty_fd70 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.chip-small-a8d5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-small-a8d5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.chip-small-a8d5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.chip-small-a8d5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.form_static_6b09 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower_76c9 {
    margin: 2rem 0;
}

.sidebar_lite_716c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.sidebar_lite_716c .description-solid-de45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lower-2c2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower-2c2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.iron-29a5 {
    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);
}

.iron-29a5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.mini_3f75 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery_up_4da9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.mini-2caf {
    padding: var(--section-padding);
}

.caption-ec22 {
    margin: 2rem 0;
}

.image_d84b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .image_d84b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_d84b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood-e7ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wood-e7ba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside_2015 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cold-8df5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.brown_98e5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.brown_98e5.wrapper-1c49 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.logo_5f84 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.form_hot_61ab {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.component-center-07f2 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-short-6a5f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_3aee {
    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);
}

.hovered_3aee p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered_3aee strong {
    color: var(--accent-color);
}

/* Update Log Section */
.menu-motion-8ebc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_221c {
    margin: 2rem 0;
}

.medium_9653 {
    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) {
    .medium_9653 {
        flex-direction: column;
        gap: 1rem;
    }
}

.medium_9653:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.medium_9653::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.middle_c5bd {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.texture-18e0 {
    flex: 1;
}

.thick_ad90 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lower_0652 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower_0652 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.row_right_5d4d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered-e440 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow-ce20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .yellow-ce20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_3cdf {
    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);
}

.hero_dab4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.outline-d12d {
    flex: 1;
}

.cold-8129 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.container-fixed-c895 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.icon-b547 {
    margin-top: 2rem;
    text-align: center;
}

.frame_75a3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_75a3 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tooltip-dark-e861 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-dark-e861 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_pink_82ff {
    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);
}

.description_pink_82ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.description_pink_82ff .new_b940 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_pink_82ff .simple_017a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.description_pink_82ff .last-ea28 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.description_pink_82ff .grid_left_fd08 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.grid-9720 {
    padding: var(--section-padding);
}

.frame_stale_df85 .wrapper-complex-9b83 {
    flex: 1;
}

/* Promo Calendar Section */
.cold-c785 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal_3ab6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_3ab6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright-4afc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_aa78 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.background-867c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text_red_e46f {
    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);
}

.gradient_copper_c2b0 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.blue-ed29 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.modal-liquid-bc45 {
    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);
}

.modal-liquid-bc45 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal-liquid-bc45 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.light-65f3 {
    padding: var(--section-padding);
}

.button_pressed_4f0f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button_pressed_4f0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search_fresh_52c3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_pressed_80f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-c42b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-c42b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.label-focused-a6d2 {
    margin-top: 3rem;
}

.label-focused-a6d2 .tertiary_black_ede1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.label-focused-a6d2 .dirty_fd70 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-focused-a6d2 .chip-small-a8d5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.label-focused-a6d2 .chip-small-a8d5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.label-focused-a6d2 .chip-small-a8d5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.label-focused-a6d2 .chip-small-a8d5 li strong {
    color: var(--warning-color);
}

.nav-gas-e66b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav-gas-e66b strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.soft_b067 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_caf3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_caf3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-820f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-820f .description-solid-de45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.text-069d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outline_feb3 {
    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);
}

.outline_feb3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar_lower_3e44 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_a44c {
    flex: 1;
}

.picture-6f81 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.iron_56db {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shadow_fdd1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.photo-lower-c56e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hover-bronze-1c38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .hover-bronze-1c38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_1346 {
    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);
}

.layout_1346:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item_31a7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-purple-f59a {
    color: var(--text-gray);
    font-size: 1rem;
}

.accent-north-4237 {
    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);
}

.table-fd1a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.table-fd1a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hidden-solid-e389 { 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; }
.wide-66a1, .article_current_9949 { max-width:100%; height:auto; }

.form_605b, .progress-e98b, .label_2555 { white-space:normal; }

.item-5e74,
.column-dim-7791,
.mini-8d2e,
.tooltip-dark-e861,
.column_87c4,
.photo_e1e5 {
  flex-wrap:wrap;
}

[class*="grid"],
.hover-bronze-1c38,
.image_d84b,
.tall-5082 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.stale_c4a8 img,
.column-dim-7791 img,
.table_inner_7961 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.selected_7116, .wrapper_pink_8069,
.logo-1f2e, .west_e6e1 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hidden-short-c61e { width:100%; overflow-x:auto; }
.hidden-short-c61e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.sidebar-9300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .sidebar-9300 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.outline-prev-8938 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.menu_thick_4bd2,
.north-72ab,
.badge_d70e,
.next-6112,
.primary_upper_68ff,
.hover-bronze-1c38,
.image_d84b,
.tall-5082,
.purple_f765,
.old-89f8,
.sidebar-9300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .menu_thick_4bd2,
  .north-72ab,
  .badge_d70e,
  .next-6112,
  .primary_upper_68ff,
  .hover-bronze-1c38,
  .image_d84b,
  .tall-5082,
  .purple_f765,
  .old-89f8,
  .sidebar-9300 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.modal_last_ea8e,
.disabled_686b,
.layout_1346,
.badge_small_3df7,
.wood-e7ba,
.layout_fluid_16b0,
.medium-60d5,
.outline-prev-8938 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.yellow_bdd3,
.dynamic-2db7,
.prev-1f82 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.yellow_bdd3 > *,
.dynamic-2db7 > *,
.prev-1f82 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: b221 */
.ghost-box-b9 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
