/* {$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;
}

.huge_384a {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.stale-66bf {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stale-66bf {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stale-66bf {
        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 */
.purple-de7e {
    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);
}

.button_right_cdc7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .button_right_cdc7 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .button_west_19f8 {
        grid-column: 1;
    }
    
    .popup-yellow-538a {
        grid-column: 2;
    }
    
    .item_aa0c {
        grid-column: 3;
    }
}

.button_west_19f8 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.button_west_19f8:hover img {
    transform: scale(1.05);
}

/* Navigation */
.gradient-over-a454 {
    display: none;
}

@media (min-width: 1024px) {
    .gradient-over-a454 {
        display: block;
    }
}

/* Grouped Navigation */
.tiny-376b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.banner_slow_ab3a {
    position: relative;
}

.text_687c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.banner_slow_ab3a .highlight_9bbf {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.highlight_9bbf {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header-03b5 {
    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;
}

.header-03b5:hover,
.header-03b5.fn-active-a7d3 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.fast-023d {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .fast-023d {
        display: flex;
    }
}

/* Mobile Register Button */
.popup-yellow-538a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .popup-yellow-538a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.hidden-d99e {
    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;
}

.hidden-d99e::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 */
.item_aa0c {
    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) {
    .item_aa0c {
        display: none;
    }
}

.item_aa0c span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.item_aa0c.fn-active-a7d3 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.item_aa0c.fn-active-a7d3 span:nth-child(2) {
    opacity: 0;
}

.item_aa0c.fn-active-a7d3 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tooltip_88d2 {
    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;
}

.tooltip_88d2.fn-active-a7d3 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.footer_93fa {
    overflow: hidden;
}

.sort_067c {
    list-style: none;
    padding: 0.75rem 0;
}

.header-5fe5 {
    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;
}

.header-5fe5:hover,
.header-5fe5.fn-active-a7d3 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.header-5fe5.layout_242e {
    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;
}

.header-5fe5.layout_242e::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 */
.east-ca72 {
    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;
}

.tooltip_outer_7444 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tooltip_outer_7444:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.grid_glass_9736 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.grid_glass_9736:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination_f408 {
    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;
}

.pagination_f408:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.prev_3f51 {
    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;
}

.selected_32ad {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.selected_32ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.slider_prev_6660 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.slider_prev_6660:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pro-ee3d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pro-ee3d: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);
}

.main_9ea3 {
    font-size: 1em;
    font-weight: 700;
}

.pro_e2b0 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.border-new-c6b3 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.border-new-c6b3::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;
}

.background_f5c8 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .background_f5c8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.notification-middle-488f {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.shadow-df12 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.bronze_4c6c {
    margin-bottom: 2rem;
}

.paragraph-b8df {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paragraph-b8df {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-dfc1 {
    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);
}

.box_warm_8e20 {
    font-size: 1.5rem;
}

.outline_advanced_249d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.smooth-78bb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_fresh_07fd {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.modal_fresh_07fd:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.alert_d84c {
    text-align: center;
    margin-bottom: 3rem;
}

.outline_wood_517a {
    margin-bottom: 1rem;
}

.slider-df5b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.summary-bd4b {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .summary-bd4b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .summary-bd4b.short_357e {
        direction: rtl;
    }
    
    .summary-bd4b.short_357e > * {
        direction: ltr;
    }
}

.silver-03c4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.silver-03c4:first-child {
    margin-top: 0;
}

.media-cd44 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tabs-b953 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.tabs-b953:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.copper_c423 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .copper_c423 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-4fec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-complex-9c2f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.alert-eaa2 {
    list-style: none;
}

.alert-eaa2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-eaa2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.shade-focused-c774 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.static-275b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.new_c4a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.message-f730 {
    margin: 2rem 0;
}

.fixed-b933 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.description_tall_aa99 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.row_cacd {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.filter_c3fb {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.progress_huge_c084 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_huge_c084 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-a8ec {
    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);
}

.dropdown-a8ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bottom-8d77 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.carousel-af67 {
    font-size: 1.5rem;
}

.sidebar-aceb {
    color: var(--accent-color);
    margin: 0;
}

.selected-ddc5 {
    list-style: none;
}

.selected-ddc5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.selected-ddc5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.input-upper-5d2d {
    margin: 2rem 0;
}

.thumbnail_purple_0c2c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.short-f63b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .short-f63b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-1c83 {
    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);
}

.outline_7c74 {
    font-size: 1.25rem;
}

.shade_9f0e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.sidebar_pink_4bef,
.icon-6884 {
    text-align: center;
    margin: 2rem 0;
}

.small-4674,
.action_d424 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.section-dark-8f8d {
    margin: 2rem 0;
    text-align: center;
}

.container_de90 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container_de90::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tertiary_e4fc {
    position: relative;
    z-index: 1;
}

.stale-d15b {
    margin-bottom: 1rem;
}

.focus-hovered-ab27 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.module_yellow_7ef0 {
    margin-bottom: 3rem;
}

.hard-73ce {
    margin-top: 3rem;
}

.hidden_light_b431 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hidden_light_b431 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_light_b431 .gold-dfc1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_tall_af01 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_warm_0b12 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.prev-235c {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.texture_b609 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .texture_b609 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_b609 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.accent_a01a {
    margin-bottom: 1rem;
}

.purple_e3e0 img {
    margin-bottom: 1rem;
}

.badge-9d3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_62e4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.green_274a {
    list-style: none;
}

.green_274a li {
    margin-bottom: 0.5rem;
}

.green_274a a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.green_274a a:hover {
    color: var(--accent-color);
}

.gallery-liquid-7129 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.selected_218e {
    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);
}

.selected_218e:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.label_241c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.label_241c p {
    margin-bottom: 0.25rem;
}

.lower_c899 {
    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) {
    .lower_c899 {
        flex-direction: row;
    }
}

.backdrop_lower_8c8b {
    text-align: center;
}

@media (min-width: 768px) {
    .backdrop_lower_8c8b {
        text-align: left;
    }
}

.backdrop_lower_8c8b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture-cb55 {
    font-size: 0.75rem !important;
}

.input-in-fd43 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dark_be6b {
    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);
    }
}

.grid_6e99 {
    animation: fadeInUp 0.6s ease-out;
}

.out-94f2 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.aside-glass-073f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-glass-073f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.notification-prev-9ebc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-prev-9ebc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-solid-d501 {
    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);
}

.media-solid-d501 .new_c4a3 {
    font-size: 1.25rem;
}

.media-solid-d501 .aside_middle_fd03 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.white_c6bb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .white_c6bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_8bce {
    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);
}

.gradient_8bce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_3a64 {
    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);
}

.chip-d8c7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph_east_f5dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-simple-a8b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_5eca {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border_5eca .tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_5eca .input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_1d5a {
    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);
}

.title-09a1 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.title-09a1 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.title-09a1 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.section-glass-6588 {
    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);
}

.motion_e941 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.box-liquid-89c2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.box-liquid-89c2 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.box-liquid-89c2 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);
}

.box-liquid-89c2 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.box-liquid-89c2 input::placeholder {
    color: var(--text-muted);
}

.container_ebce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.left-c721 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.left-c721 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.title-brown-3444 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.title-brown-3444:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.short-f63b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-f63b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-1c83 {
    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);
}

.backdrop-1c83 .outline_7c74 {
    font-size: 1.25rem;
}

.backdrop-1c83 .shade_9f0e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.table_f302 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-7d76 {
    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);
}

.thumbnail-7d76 .new_c4a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-7d76 .tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail-7d76 .input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-2fef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-middle-4a74 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary-middle-4a74 .module_lower_482d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary-middle-4a74 .secondary-fcaf {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-focused-0a2e {
    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);
}

.smooth-642d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .smooth-642d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-6241 {
    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);
}

.pattern-6241:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_529b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gold_f682 {
    flex: 1;
}

.module_plasma_0092 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.fixed-5c52 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lower_07db {
    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);
}

.lower_07db:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.content_east_8026 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_east_8026 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large-6399 {
    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);
}

.large-6399:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-2c09 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_under_3a32 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element_fresh_83ba {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sort_decc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item-inner-8c43 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-first-491d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-2b0a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.short-2b0a .mask_green_66de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-2b0a .bright_8c4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_focused_1fb1 {
    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);
}

.tabs-white-63f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-218c {
    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);
}

.focus-218c .new_c4a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-218c .tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-218c .input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_43c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_43c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused-8aa1 {
    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);
}

.focused-8aa1:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.focus_bronze_c6b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_bronze_c6b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-c5b5 {
    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);
}

.basic-c5b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first_f4f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_4a25 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description_tall_aa99 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.notification_hard_4316 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.pagination-iron-9831 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-3c0c {
    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);
}

.background-3c0c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel_c1fe {
    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);
}

.grid_glass_7158 {
    flex: 1;
}

.easy-9d70 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.sort_fab9 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.status-fd30 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_2a75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_dark_562c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_dark_562c .module_lower_482d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title_dark_562c .secondary-fcaf {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-6884 {
    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);
}

.label_9eb5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_9eb5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.accordion-28e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-28e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_9d68 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert_9d68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_c1a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_lower_04c0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-3883 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask_7f23 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.popup_91cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-ab6b {
    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);
}

.steel-d946 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-14ab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot-58f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-white-63f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-218c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.focus-218c .tooltip_west_1917 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus-218c .input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_static_2fd3 {
    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);
}

.video-4926 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-4926 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-4926 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-solid-9fab {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block-solid-9fab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_pro_d50d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.first-0667 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_fast_4895 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.thumbnail_advanced_29b3 {
    padding: 1.5rem;
}

.soft_1ff2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient_8192 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient_8192 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;
}

.gradient_8192 li:last-child {
    border-bottom: none;
}

.gradient_8192 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.icon_huge_e7f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_huge_e7f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_39cd {
    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);
}

.tertiary_39cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-pressed-fea0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_e44b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pressed_d06f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dark-0b9e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.east-824e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_07a9 {
    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);
}

.image-iron-0be0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up_c145 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list_short_042e {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_over_a79f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip_eb54 {
    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);
}

.cool_44ef {
    text-align: center;
}

.disabled_950e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-3e3f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.last-65f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze-6fb2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-6fb2 .tooltip_west_1917 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bronze-6fb2 .input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-a481 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-a481 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-a481 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-large-1e86 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay-large-1e86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-8097 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs_orange_5518 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tooltip_west_1917 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.component-thick-1c3c {
    padding: 1.5rem;
}

.input_red_d0ea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wide_2196 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_2196 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;
}

.wide_2196 li:last-child {
    border-bottom: none;
}

.wide_2196 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tooltip-bronze-01a3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.texture_easy_d8bf {
    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);
}

.texture_easy_d8bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green-c117 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out-7c48 {
    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);
}

.tag_3a64 {
    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;
}

.chip-d8c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph_east_f5dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.under_9423 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_b820 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_fixed_8f52 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-743b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.focus_3096 {
    display: flex;
    gap: 1rem;
}

.focus_3096 .accordion_5e86 {
    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;
}

.detail-hard-d1ad {
    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);
}

.breadcrumb-selected-08b9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.logo-ddf5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-ddf5 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;
}

.logo-ddf5 li:last-child {
    border-bottom: none;
}

.logo-ddf5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.shade_complex_2aad {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_complex_2aad {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_complex_2aad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-11b1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.popup-11b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_9b40 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_0dd8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mask_green_66de {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.element-white-461d {
    font-size: 1rem;
}

.dim_df94 {
    padding: 1.5rem;
}

.bright_8c4f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.top-9a4c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.top-9a4c .cool_44ef {
    text-align: center;
}

.top-9a4c .summary-3e3f {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.top-9a4c .gallery_f022 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dropdown_ce53 {
    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);
}

.dropdown_ce53:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.link-tiny-1533 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-tiny-1533 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-f560 {
    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);
}

.red-f560:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_under_e7a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_old_2687 {
    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);
}

.hero_last_5ee9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-ae16 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next-32a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paper_826e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow_current_c675 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_a116 {
    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);
}

.pattern_up_9b24 {
    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;
}

.pattern_up_9b24.image-old-cdd8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.pattern_up_9b24.label-4c88 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.pattern_up_9b24.pink_e1f2 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.pattern_up_9b24.dark_69c1 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.pattern_up_9b24.advanced_1a40 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.picture-upper-5167 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-99b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_6ea5 {
    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);
}

.blue_1872 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.secondary-2fef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-2fef 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;
}

.secondary-2fef li:last-child {
    border-bottom: none;
}

.secondary-2fef li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.first_0ead {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first_0ead {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first_0ead {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_complex_7cda {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_complex_7cda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_complex_7cda.cool_1db4 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .carousel_complex_7cda.cool_1db4 {
        grid-column: span 3;
    }
}

.chip-c863 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.carousel_complex_7cda.cool_1db4 .chip-c863 {
    background: rgba(6, 182, 212, 0.1);
}

.secondary_c3a1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-paper-4a0f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.carousel_complex_7cda.cool_1db4 .feature-paper-4a0f {
    color: var(--info-color);
}

.surface_8ee1 {
    padding: 1.5rem;
    text-align: center;
}

.out_33e9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.carousel_complex_7cda.cool_1db4 .out_33e9 {
    color: var(--info-color);
}

.footer-warm-cffd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.box-narrow-f298 {
    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 */
.heading-soft-f4f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-soft-f4f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-864b {
    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);
}

.summary-864b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_outer_787d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-7d76 {
    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);
}

.outline_7c74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-f088 {
    flex: 1;
}

.thumbnail_purple_0c2c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.rough-5b39 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_steel_8066 {
    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);
}

.media-mini-80ff {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cold_6b01 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dark_be6b {
    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);
}

.middle_8bf0 {
  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);
}

.middle_8bf0 .cool_44ef {
    text-align: center;
}

.middle_8bf0 .disabled_950e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.middle_8bf0 .summary-3e3f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip_first_aaa1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_4ee5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_8119 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-316e {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_89f5 {
    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);
}

.middle_4e0c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar_9bfe {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-small-580c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-small-580c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-small-580c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_lower_07c1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip_lower_07c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-2b4b {
    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);
}

.filter-f84e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary-4b85 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.liquid-6cfc {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.liquid-6cfc.cold_49f2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.liquid-6cfc.warm-4ce0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.liquid-6cfc.progress_8bb0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.notification_334d {
    padding: 1.5rem;
    text-align: center;
}

.footer_white_f300 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary_motion_d40d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.secondary_motion_d40d .left-b573 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.avatar-pressed-3da1 {
    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);
}

.avatar-pressed-3da1:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.purple_f1b9 {
  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);
}

.section-narrow-fb12 {
    text-align: center;
}

.section-narrow-fb12 .disabled_950e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.section-narrow-fb12 .summary-3e3f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.prev_8a47 { text-align: center; }
.west_0a69 { text-align: left; }
.overlay-6547 { text-align: right; }

.current-63f3 { margin-bottom: 0; }
.gallery_1981 { margin-bottom: 0.5rem; }
.title_prev_f8c9 { margin-bottom: 1rem; }
.texture-dbab { margin-bottom: 1.5rem; }
.banner-ab58 { margin-bottom: 2rem; }

.summary_brown_f933 { margin-top: 0; }
.in_b133 { margin-top: 0.5rem; }
.bottom-a963 { margin-top: 1rem; }
.copper-60fa { margin-top: 1.5rem; }
.pattern_18d2 { margin-top: 2rem; }

.fn-hidden-a7d3 { display: none; }
.fn-visible-a7d3 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .border-new-c6b3 {
        padding: 6rem 0 3rem;
    }
    
    .background_f5c8 {
        text-align: center;
    }
    
    .summary-bd4b {
        text-align: center;
    }
    
    .paragraph-b8df {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .purple-de7e,
    .tooltip_88d2,
    .container_de90,
    .prev-235c {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .border-new-c6b3 {
        background: none;
    }
}

/* Providers Section */
.white-2e47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_1d42 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_1d42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter_1d42 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-lite-1837 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.section-lite-1837:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden-7473 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.picture-c72c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.title-6626 {
    list-style: none;
    padding: 0;
}

.title-6626 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.title-6626 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.copper-0bf2 {
    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);
}

.copper-0bf2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.summary_stale_e53b {
    padding: var(--section-padding);
}

.main-action-fbc0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-action-fbc0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_cd78 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_cd78:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.simple_d1a9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hover-2824 {
    display: flex;
    flex-direction: column;
}

.left_2b87 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.white_e99f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-center-ef01 {
    color: var(--accent-color);
}

.hovered-20ae {
    font-size: 1.25rem;
}

.message-0f00 {
    margin-bottom: 1rem;
}

.message-0f00 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hovered-9852 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.backdrop-narrow-f880 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.cool_44ef {
    text-align: center;
}

.disabled_950e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-3e3f {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.solid_b130 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-basic-31cb {
    margin: 2rem 0;
}

.white-1ac2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.white-1ac2 .new_c4a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-a655 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stone_45e0 {
    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;
}

.stone_45e0:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main_947b {
    font-size: 2rem;
}

.logo-dirty-48c4 {
    display: flex;
    flex-direction: column;
}

.frame-01e8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.overlay-075e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.gradient-b9dd {
    padding: var(--section-padding);
}

.mini-3f19 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mini-3f19 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini-3f19 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-d2a6 {
    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);
}

.panel-d2a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.panel-d2a6 .disabled_950e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.panel-d2a6 .summary-3e3f {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.panel-d2a6 .form-out-73e7 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.liquid_b628 {
    margin-top: 4rem;
}

.active-motion-ee8b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.shadow-green-c54f {
    overflow-x: auto;
}

.bronze_6243 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bronze_6243 thead {
    background: var(--accent-color);
}

.bronze_6243 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.bronze_6243 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_6243 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.bronze_6243 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.stone_e6b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-411c {
    max-width: 900px;
    margin: 0 auto;
}

.dynamic-fa7a {
    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);
}

.dynamic-fa7a:hover {
    border-color: var(--accent-color);
}

.surface_c88b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.surface_c88b h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.badge-deb6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.dynamic-fa7a.fn-active-a7d3 .badge-deb6 {
    transform: rotate(45deg);
}

.gas-df8b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.dynamic-fa7a.fn-active-a7d3 .gas-df8b {
    max-height: 1000px;
}

.gas-df8b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.chip-steel-1f75 {
    padding: var(--section-padding);
}

.title-09a1 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.border-cool-f114 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-329f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-329f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dynamic-f80f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm_7a45 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form_04dd {
    font-size: 2rem;
}

.highlight-a706 {
    color: var(--text-white);
    margin: 0;
}

.focus-93ce {
    list-style: none;
    padding: 0;
}

.focus-93ce li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-93ce li:last-child {
    border-bottom: none;
}

.center_21e7 {
    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);
}

.center_21e7 p {
    color: var(--success-color);
    margin: 0;
}

.panel_ff3d {
    margin-top: 3rem;
}

.breadcrumb-selected-08b9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.surface-4a82 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .surface-4a82 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.smooth_16d8 {
    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);
}

.black-523d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smooth_16d8 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.wrapper_7c52 {
    padding: var(--section-padding);
}

.header-down-a417 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-down-a417 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_bottom_3f63 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress_bottom_3f63:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.disabled_light_a96e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.first_e9c7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.accent_af02 {
    flex: 1;
}

.panel_e49b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.accordion_04c6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.top_7152 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_cold_ff6e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background_cold_ff6e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.rough_292b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.picture_3b7e {
    padding: var(--section-padding);
}

.short-319c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.accent-white-bc1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-white-bc1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_497b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-north-e3e4, .input-fixed-01c8, .gallery_light_eadc {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.gallery_light_eadc {
    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 */
.tall-2dfe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-soft-0b14 {
    margin: 2rem 0;
}

.orange-c805 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_6d77 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled_new_e4aa {
    list-style: none;
    padding: 0;
}

.disabled_new_e4aa 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;
}

.disabled_new_e4aa li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.disabled_new_e4aa li:last-child {
    border-bottom: none;
}

.static_ebb3 {
    text-align: center;
    margin-top: 2rem;
}

.form-b0e8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.grid_aaa7 {
    padding: var(--section-padding);
}

.upper_d92c {
    margin: 2rem 0;
}

.backdrop-liquid-0fb3 {
    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) {
    .backdrop-liquid-0fb3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.backdrop-liquid-0fb3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.light-dcd0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.box-b8dd {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.heading-down-20c9 {
    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;
}

.photo_7a11 {
    flex: 1;
}

.plasma_0a66 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notification-brown-7ec3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fixed_77e3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.out_84d3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .out_84d3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.thumbnail-41dd {
    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);
}

.thumbnail-41dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thumbnail-41dd .disabled_950e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail-41dd .summary-3e3f {
    color: var(--text-gray);
    font-size: 1rem;
}

.text-900e {
    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);
}

.blue_4077 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blue_4077 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.container_58e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .container_58e8 {
        grid-template-columns: 1fr 1fr;
    }
}

.grid_narrow_ec8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_dirty_2672 {
    margin-bottom: 1.5rem;
}

.message_dirty_2672 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.message_dirty_2672 input,
.message_dirty_2672 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;
}

.message_dirty_2672 input:focus,
.message_dirty_2672 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title-ce41 {
    width: 100%;
    margin-top: 1rem;
}

.message-8fab {
    display: flex;
    align-items: center;
}

.fresh_81d6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.border_ecfe {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.column_7117 {
    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;
}

.pressed-a0e9 {
    color: var(--text-gray);
}

.mask-bff2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.brown_df2b {
    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);
}

.brown_df2b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.shadow_hot_9229 {
    margin-top: 3rem;
}

.mini-732c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.pro-f539 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_f4de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.dark-efba {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-efba:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.heading_under_f220 {
    padding: var(--section-padding);
}

.link_8227 {
    margin: 2rem 0;
}

.active-98c4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.shadow_fluid_8ca7 {
    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;
}

.shadow_fluid_8ca7:hover, .shadow_fluid_8ca7.fn-active-a7d3 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.progress_gas_9a9c {
    display: none;
}

.progress_gas_9a9c.fn-active-a7d3 {
    display: block;
}

.iron_bc49 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_hovered_357c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.active-east-2cf3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.active-east-2cf3 ul {
    list-style: none;
    padding: 0;
}

.active-east-2cf3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.active-east-2cf3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.panel_soft_13ee {
    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 */
.under_2d15 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-16d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-30fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.link-old-b4c5 {
    color: var(--accent-color);
    margin: 0;
}

.tag-b9d7 {
    display: flex;
    gap: 1.5rem;
}

.logo-active-9db6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.full_36d1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.sort_silver_a210 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.sort_silver_a210.fast-3c09 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sort_silver_a210.tag-active-914d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.sort_silver_a210.bronze-6a0a {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.video_f30d {
    margin-top: 2rem;
}

.next-c28d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.red-cd39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .red-cd39 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_d770 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.header-1001 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.banner-up-2eac {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.dirty-2a9f {
    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 */
.bottom-b4ec {
    padding: var(--section-padding);
}

.hard_3141 {
    margin: 2rem 0;
}

.alert-4f40 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.fixed_bebb {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.block-a0ff {
    list-style: none;
    padding: 0;
}

.block-a0ff 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;
}

.block-a0ff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.block-a0ff li:last-child {
    border-bottom: none;
}

.center_39ca {
    margin: 2rem 0;
}

.link-narrow-b5be {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup-c3cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .popup-c3cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_be03 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-74ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-dcfb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table-warm-8d12 {
    margin-top: 2rem;
}

.module_plasma_0092 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.slider-middle-01cb {
    list-style: none;
    padding: 0;
}

.static_926a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.static_926a a {
    color: var(--accent-color);
    text-decoration: none;
}

.static_926a a:hover {
    text-decoration: underline;
}

.hard-6d41 {
    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 */
.main-middle-38ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple-fe89 {
    margin: 2rem 0;
}

.mask_yellow_0b33 {
    margin-bottom: 3rem;
}

.mask_yellow_0b33 .glass_6d77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.stale-dae0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-4f73 {
    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);
}

.highlight-4f73:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.main-cool-7699 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .main-cool-7699 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_3b96 {
    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 */
.footer_0d7d {
    padding: var(--section-padding);
}

.inner_f998 {
    margin: 2rem 0;
}

.logo-south-d84d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.aside-ec69 {
    overflow-x: auto;
    margin: 2rem 0;
}

.right_59c5 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dropdown-3643 {
    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;
}

.menu_in_73ff {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.box_c10c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .box_c10c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_hard_f8f2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_hard_f8f2 .new_c4a3 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.alert_hard_f8f2 .tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall_08f5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.bottom_a45f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-0d8e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-0d8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_out_2a45 {
    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;
}

.main_out_2a45:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.aside_out_ee42 {
    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);
}

.lower-2bf8 {
    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;
}

.gallery_down_a938 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.feature-b8b6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.white_9a7d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.new_a105 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-9843 {
    color: var(--text-white);
    font-weight: 600;
}

.white-4641 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current-524c {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.current-524c .accordion_5e86 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_2cbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_2cbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-full-2b2a {
    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);
}

.hero-full-2b2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero-full-2b2a .disabled_950e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-full-2b2a .summary-3e3f {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress_707e {
    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);
}

.hover_brown_e2b1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hover_brown_e2b1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.popup_91cd {
    margin: 2rem 0;
}

.breadcrumb-ab6b {
    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);
}

.breadcrumb-ab6b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.steel-d946 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pattern-2200 {
    flex: 1;
}

.pink-14ab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot-58f8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.tabs-white-63f6 {
    margin: 2rem 0;
}

.focus-218c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-218c .tooltip_west_1917 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.focus-218c .input_red_d0ea {
    color: var(--text-gray);
    margin: 0;
}

.form_static_2fd3 {
    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);
}

.form_static_2fd3 .small-4674 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tall_08f5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.steel_c1fe {
    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;
}

.grid_glass_7158 {
    flex: 1;
}

.sort_fab9 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.status-fd30 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.tag_3a64 {
    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;
}

.cold_9585 {
    flex: 1;
}

.chip-d8c7 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.paragraph_east_f5dc {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tooltip_fixed_8f52 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.filter-743b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.focus_3096 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.focus_3096 .accordion_5e86 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail-hard-d1ad {
    margin-top: 2rem;
}

.detail-hard-d1ad .breadcrumb-selected-08b9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.link_8d6e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_eb54 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tooltip_eb54 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_eb54 .cool_44ef {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-65f8 {
    margin: 2rem 0;
}

.bronze-6fb2 {
    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 */
.layout_ecae {
    padding: var(--section-padding);
}

.component-thick-1c3c {
    margin-top: 1rem;
}

.wide_2196 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.wide_2196 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wide_2196 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.block-ce34 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-462d {
    margin: 2rem 0;
}

.notification-4d6d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.brown-7f7b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.text-last-5727 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.table_red_6ada {
    margin: 2rem 0;
}

.tooltip-73e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.tooltip-73e3 .glass_6d77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-6410 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider-6410 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.static-9689 {
    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);
}

.inner_6575 {
    color: var(--text-white);
    font-weight: 600;
}

.dirty-c034 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.tall-40cc {
    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);
}

.tall-40cc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.next_f5f7 {
    padding: var(--section-padding);
}

.dropdown-1809 {
    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;
}

.dropdown-1809:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.highlight-cool-d7dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-cool-d7dc .black-523d {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-cool-d7dc .feature_blue_0435 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.section_5a23 {
    flex: 1;
}

.grid-purple-b4fb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slow-0d82 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slow-0d82 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.slow-0d82 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fresh_6efd {
    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);
}

.fresh_6efd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fresh_6efd strong {
    color: var(--warning-color);
}

/* Slots Section */
.fresh_441f {
    padding: var(--section-padding);
}

.item-inner-8c43 {
    margin: 2rem 0;
}

/* Table Games Section */
.item_4956 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-first-491d {
    margin: 2rem 0;
}

.short-2b0a {
    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);
}

.short-2b0a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.short-2b0a .mask_green_66de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-2b0a .bright_8c4f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.breadcrumb_focused_1fb1 {
    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);
}

.breadcrumb_focused_1fb1 .small-4674 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.picture-soft-27fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_easy_e50d {
    margin: 2rem 0;
}

.tabs_58e9 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-f759 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark-bc4a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.block-dim-b88a {
    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);
}

.block-dim-b88a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.block-dim-b88a.fn-active-a7d3 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_c491 {
    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);
}

.copper_fac6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.copper_fac6 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.action_4015 {
    padding: var(--section-padding);
}

.pagination-605b {
    margin: 2rem 0;
}

.detail-over-ed4b {
    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);
}

.detail-over-ed4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .detail-over-ed4b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mask-167c {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.footer-2315 {
    flex: 1;
}

.paper-9595 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside_east_b534 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_hard_5a37 {
    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;
}

.menu_solid_72fa {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature_warm_8a5d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.progress_d876 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block_slow_078c {
    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;
}

.block_slow_078c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.banner-pink-6dc7 {
    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);
}

.shadow_89c6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow_89c6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.preview_ebf2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-7f61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dirty-7f61 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty-7f61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-1f2d {
    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;
}

.fixed-1f2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas-7861 {
    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;
}

.panel_short_1f13 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.aside-d9b7 {
    font-size: 2rem;
}

.up_3ecc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.outer-5056 {
    flex: 1;
}

.secondary_glass_2cf5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pagination-4ed5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lite-ac65 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accent_fluid_67ee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.secondary_242b {
    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;
}

.tertiary-e1d0 {
    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;
}

.tertiary-e1d0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.highlight_b41c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_motion_879a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.brown_bf2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .brown_bf2d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-5bcc {
    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);
}

.wood-9a0a {
    color: var(--text-white);
    font-weight: 600;
}

.action-5059 {
    color: var(--accent-color);
    font-weight: 600;
}

.logo-80e4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.logo-80e4 strong {
    color: var(--accent-color);
}

/* Security Section */
.hover-fresh-9cda {
    padding: var(--section-padding);
}

/* Benefits Section */
.primary_51a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.accent-ddfa {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.element-wide-d396 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_fc7d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.stale_45ab {
    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) {
    .stale_45ab {
        flex-direction: column;
        gap: 1rem;
    }
}

.stale_45ab:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.stale_45ab .tag_3a64 {
    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;
}

.stale_45ab .cold_9585 {
    flex: 1;
}

.stale_45ab .chip-d8c7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stale_45ab .paragraph_east_f5dc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.text_middle_8a00 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_middle_8a00 .thumbnail_purple_0c2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text_middle_8a00 .table_f302 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text_middle_8a00 .table_f302 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.text_middle_8a00 .table_f302 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.motion_1ec3 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.left-035e {
    padding: var(--section-padding);
}

.container_medium_a9c6 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .container_medium_a9c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-fba3 {
    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);
}

.hover-fba3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.hover-fba3 .backdrop_copper_7bb6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-fba3 .article-828f {
    flex: 1;
}

.hover-fba3 .module_lower_482d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover-fba3 .notification-c99c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_mini_adf4 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_mini_adf4 .static_41bc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_mini_adf4 .copper_84d9 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.hero_mini_adf4 .copper_84d9 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);
}

.hero_mini_adf4 .copper_84d9 li:last-child {
    border-bottom: none;
}

.hero_mini_adf4 .copper_84d9 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;
}

.hero_mini_adf4 .copper_84d9 li strong {
    color: var(--text-white);
}

.center-7e6e {
    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-7e6e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-7e6e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.feature-center-e9a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-bd02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .table-bd02 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar_dirty_9820 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar_dirty_9820:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column_dynamic_526c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-ea60 {
    font-size: 2rem;
}

.focused_f22f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.primary_846d {
    flex: 1;
}

.motion-4c23 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion-4c23 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.motion-4c23 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.background-pro-1a7f {
    margin-top: 3rem;
}

.alert-4f40 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fixed_bebb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-a0ff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-a0ff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.block-a0ff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.block-a0ff li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.fast_6c38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first_d42e {
    margin: 2rem 0;
}

.frame-in-111f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.frame-in-111f .glass_6d77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.old-ff84 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .old-ff84 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-e4e4 {
    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);
}

.active-e4e4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.red-8261 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-gold-4481 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.card-wood-21ec {
    padding: var(--section-padding);
}

.nav_dynamic_223d {
    margin: 2rem 0;
}

.element-7d94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .element-7d94 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-7d94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-purple-41f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.list-purple-41f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.preview-wood-363d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.static_2c5c {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.detail-4e65 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-4e65.frame-7ec2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shadow-b938 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.aside-white-fcf3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.filter_d5f8 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.west_6137 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-e454 {
    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);
}

.thumbnail-e454 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-e454 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.avatar_b0a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_f239 {
    margin: 2rem 0;
}

.tabs-e217 {
    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) {
    .tabs-e217 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tabs-e217:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs-e217::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);
}

.main_brown_9494 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.pink-3362 {
    flex: 1;
}

.focused-0e7c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.copper-b5ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper-b5ce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_d108 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_5171 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.summary-active-b26c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary-active-b26c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_first_8af6 {
    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);
}

.overlay-easy-3e4c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail_dynamic_b90a {
    flex: 1;
}

.static-72bb {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.warm-c0cd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table_a9fa {
    margin-top: 2rem;
    text-align: center;
}

.button-d118 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-d118 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.link-tiny-1533 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-tiny-1533 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-f560 {
    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);
}

.red-f560:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.red-f560 .gallery-pressed-fea0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-f560 .hidden_e44b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.red-f560 .pressed_d06f {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.red-f560 .dark-0b9e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.tiny-a90b {
    padding: var(--section-padding);
}

.wrapper_old_2687 .detail_df46 {
    flex: 1;
}

/* Promo Calendar Section */
.article_first_85aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down_a048 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_a048 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast_4155 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-8a5a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.menu-iron-8bea {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slow_cfa2 {
    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);
}

.layout-lower-626d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb_cold_25c8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.large-8729 {
    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);
}

.large-8729 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.large-8729 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.table-234d {
    padding: var(--section-padding);
}

.shadow-ed8b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shadow-ed8b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination-160c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-39f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-warm-be7a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-warm-be7a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-97e7 {
    margin-top: 3rem;
}

.chip-97e7 .alert-4f40 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.chip-97e7 .fixed_bebb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.chip-97e7 .block-a0ff {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.chip-97e7 .block-a0ff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.chip-97e7 .block-a0ff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.chip-97e7 .block-a0ff li strong {
    color: var(--warning-color);
}

.content_pro_c77d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content_pro_c77d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.logo_c9a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-1efd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic-1efd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-east-a2cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-east-a2cb .glass_6d77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.bronze_2143 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breadcrumb_b286 {
    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);
}

.breadcrumb_b286:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.nav_green_ab65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-copper-a384 {
    flex: 1;
}

.column-087a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.static-e878 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.menu-aca4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.status-east-39c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shadow-lite-2bc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .shadow-lite-2bc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-14bc {
    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);
}

.iron-14bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer-green-9290 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-de36 {
    color: var(--text-gray);
    font-size: 1rem;
}

.blue_4077 {
    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);
}

.main_c1f3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.main_c1f3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.stale-66bf { 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; }
.modal_fresh_07fd, .tabs-b953 { max-width:100%; height:auto; }

.east-ca72, .pagination_f408, .prev_3f51 { white-space:normal; }

.background_f5c8,
.summary-bd4b,
.heading-soft-f4f2,
.link-tiny-1533,
.tabs-white-63f6,
.detail-small-580c {
  flex-wrap:wrap;
}

[class*="grid"],
.shadow-lite-2bc4,
.element-7d94,
.hidden_light_b431 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.border-new-c6b3 img,
.summary-bd4b img,
.smooth-78bb img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.notification-middle-488f, .shadow-df12,
.outline_wood_517a, .slider-df5b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.shadow-green-c54f { width:100%; overflow-x:auto; }
.shadow-green-c54f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.filter_1d42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .filter_1d42 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.section-lite-1837 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.mini-3f19,
.status-ce4a,
.dim_19e2,
.popup-01ed,
.out_84d3,
.shadow-lite-2bc4,
.element-7d94,
.hidden_light_b431,
.purple_f1b9,
.pagination-605b,
.filter_1d42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .mini-3f19,
  .status-ce4a,
  .dim_19e2,
  .popup-01ed,
  .out_84d3,
  .shadow-lite-2bc4,
  .element-7d94,
  .hidden_light_b431,
  .purple_f1b9,
  .pagination-605b,
  .filter_1d42 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.panel-d2a6,
.thumbnail-41dd,
.iron-14bc,
.gold-dfc1,
.list-purple-41f0,
.section-narrow-fb12,
.detail-over-ed4b,
.section-lite-1837 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.next_0437,
.shade_a10f,
.element-1ec6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.next_0437 > *,
.shade_a10f > *,
.element-1ec6 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: c927 */
.ghost-box-h7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
