/* {$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;
}

.brown-ddce {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.content-steel-d44f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .content-steel-d44f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-steel-d44f {
        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 */
.warm_89bb {
    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);
}

.slow-828f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .slow-828f {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .tabs-pro-36d6 {
        grid-column: 1;
    }
    
    .shade_d2f8 {
        grid-column: 2;
    }
    
    .lower_6e75 {
        grid-column: 3;
    }
}

.tabs-pro-36d6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.tabs-pro-36d6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.surface-b9a3 {
    display: none;
}

@media (min-width: 1024px) {
    .surface-b9a3 {
        display: block;
    }
}

/* Grouped Navigation */
.pagination-4f0a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.layout_down_be07 {
    position: relative;
}

.main_b902 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.layout_down_be07 .link-south-e2d9 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.link-south-e2d9 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.pink_feef {
    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;
}

.pink_feef:hover,
.pink_feef.fn-active-742d {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.south_0e29 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .south_0e29 {
        display: flex;
    }
}

/* Mobile Register Button */
.shade_d2f8 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .shade_d2f8 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.bronze_a25c {
    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;
}

.bronze_a25c::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 */
.lower_6e75 {
    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) {
    .lower_6e75 {
        display: none;
    }
}

.lower_6e75 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.lower_6e75.fn-active-742d span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lower_6e75.fn-active-742d span:nth-child(2) {
    opacity: 0;
}

.lower_6e75.fn-active-742d span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.element-c9fe {
    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;
}

.element-c9fe.fn-active-742d {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.backdrop_e7d6 {
    overflow: hidden;
}

.logo-268b {
    list-style: none;
    padding: 0.75rem 0;
}

.thumbnail-brown-12d6 {
    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;
}

.thumbnail-brown-12d6:hover,
.thumbnail-brown-12d6.fn-active-742d {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.thumbnail-brown-12d6.logo_e39c {
    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;
}

.thumbnail-brown-12d6.logo_e39c::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 */
.sidebar_6fea {
    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;
}

.description_e0b0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.description_e0b0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.hero-right-cf94 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hero-right-cf94:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.table_40ac {
    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;
}

.table_40ac:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.new-74b9 {
    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;
}

.caption-fluid-f9d7 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.caption-fluid-f9d7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.main-next-1c39 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.main-next-1c39:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.over-328f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.over-328f: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);
}

.mask-bottom-7cdd {
    font-size: 1em;
    font-weight: 700;
}

.caption-066d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.silver-145f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.silver-145f::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;
}

.sidebar-black-0fb0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .sidebar-black-0fb0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.content_advanced_b6ee {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.item-light-6aac {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.column_motion_750c {
    margin-bottom: 2rem;
}

.hovered_41f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hovered_41f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_5346 {
    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);
}

.in-3755 {
    font-size: 1.5rem;
}

.filter_a8cd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.dropdown-d48e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip_2890 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tooltip_2890:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.purple_52f4 {
    text-align: center;
    margin-bottom: 3rem;
}

.pressed-42b2 {
    margin-bottom: 1rem;
}

.top_9652 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.wood_daf1 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wood_daf1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .wood_daf1.box_purple_f503 {
        direction: rtl;
    }
    
    .wood_daf1.box_purple_f503 > * {
        direction: ltr;
    }
}

.hard_4aa7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hard_4aa7:first-child {
    margin-top: 0;
}

.info-b5fd {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dark-6b48 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dark-6b48:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.under_8ee4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_8ee4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-f757 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.progress_2214 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.element_west_cde9 {
    list-style: none;
}

.element_west_cde9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element_west_cde9 li:last-child {
    border-bottom: none;
}

/* Games Features */
.over_0a24 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.accent-new-f66c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fast_91c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.yellow_6f2b {
    margin: 2rem 0;
}

.thick_552e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.row-selected-0ee9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.primary_1bda {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.icon_97d8 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.wrapper-0eea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-0eea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-6b46 {
    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);
}

.message-6b46:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bright_d5ae {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon_white_49a7 {
    font-size: 1.5rem;
}

.sidebar_up_6e0f {
    color: var(--accent-color);
    margin: 0;
}

.chip-6a28 {
    list-style: none;
}

.chip-6a28 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.chip-6a28 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.mini_94b4 {
    margin: 2rem 0;
}

.overlay-green-ef1b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.outline-pressed-8964 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .outline-pressed-8964 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-basic-6273 {
    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);
}

.current_9903 {
    font-size: 1.25rem;
}

.preview_tall_361a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.row-action-9cd4,
.wood_0fc5 {
    text-align: center;
    margin: 2rem 0;
}

.hover_simple_d5b8,
.item-d644 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pattern_middle_9f01 {
    margin: 2rem 0;
    text-align: center;
}

.column-plasma-0379 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.column-plasma-0379::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;
}

.text-1b5b {
    position: relative;
    z-index: 1;
}

.fixed-0db1 {
    margin-bottom: 1rem;
}

.pagination_f17f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo_mini_aa60 {
    margin-bottom: 3rem;
}

.highlight-1819 {
    margin-top: 3rem;
}

.active-869d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .active-869d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-869d .east_5346 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.static_c521 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header-inner-1fdc {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.badge_center_e8cd {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.module-933d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .module-933d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module-933d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.surface-f53a {
    margin-bottom: 1rem;
}

.dirty_3a16 img {
    margin-bottom: 1rem;
}

.progress-out-f7e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced_0989 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.image-0581 {
    list-style: none;
}

.image-0581 li {
    margin-bottom: 0.5rem;
}

.image-0581 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.image-0581 a:hover {
    color: var(--accent-color);
}

.gallery_8bd3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border_13a8 {
    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);
}

.border_13a8:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.gold-2b82 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.gold-2b82 p {
    margin-bottom: 0.25rem;
}

.out-aa09 {
    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) {
    .out-aa09 {
        flex-direction: row;
    }
}

.item_dirty_bf92 {
    text-align: center;
}

@media (min-width: 768px) {
    .item_dirty_bf92 {
        text-align: left;
    }
}

.item_dirty_bf92 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop-cool-d2da {
    font-size: 0.75rem !important;
}

.shade_east_797a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hard-9e9e {
    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);
    }
}

.badge-87c7 {
    animation: fadeInUp 0.6s ease-out;
}

.lower_36c4 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.accent-basic-22b9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-basic-22b9 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.gold_9f5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold_9f5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_medium_1588 {
    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);
}

.breadcrumb_medium_1588 .fast_91c7 {
    font-size: 1.25rem;
}

.breadcrumb_medium_1588 .banner_rough_d09b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.focus-blue-514b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-blue-514b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_688d {
    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);
}

.black_688d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_1947 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-accent);
}

.input_7a4e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay-dd66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_brown_4660 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-small-fddb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-small-fddb .tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-small-fddb .outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-upper-47ff {
    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);
}

.green-96b2 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.green-96b2 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.green-96b2 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.input_c758 {
    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);
}

.bright-facb {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title_dark_f386 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title_dark_f386 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_dark_f386 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);
}

.title_dark_f386 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title_dark_f386 input::placeholder {
    color: var(--text-muted);
}

.fast-fe14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-c835 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.summary-c835 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.list_dfb3 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.list_dfb3:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.outline-pressed-8964 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-pressed-8964 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-basic-6273 {
    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);
}

.label-basic-6273 .current_9903 {
    font-size: 1.25rem;
}

.label-basic-6273 .preview_tall_361a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.menu-7eee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower_7114 {
    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);
}

.lower_7114 .fast_91c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_7114 .tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower_7114 .outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-44fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-middle-9cc5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list-middle-9cc5 .hover_a0c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list-middle-9cc5 .thumbnail_action_8573 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_new_f43b {
    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);
}

.frame-stone-2ecf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame-stone-2ecf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-a813 {
    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);
}

.thick-a813:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-down-1ec6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.simple_36b5 {
    flex: 1;
}

.carousel-simple-c859 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay_ca41 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card_outer_cf40 {
    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);
}

.card_outer_cf40:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.popup_brown_932d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_brown_932d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_35e2 {
    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);
}

.pressed_35e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-ae17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_48bf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.primary-hovered-8ae3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.section-8d6a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.stone_be34 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-fast-939c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-iron-d17c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-iron-d17c .paper-4a51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-iron-d17c .highlight_basic_b562 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-hard-9a5d {
    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);
}

.thumbnail-7230 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_59a5 {
    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);
}

.old_59a5 .fast_91c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old_59a5 .tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_59a5 .outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_liquid_339c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_liquid_339c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-c164 {
    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);
}

.cold-c164:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.upper_f4ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_f4ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow_9d16 {
    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);
}

.slow_9d16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_dad2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_7845 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.row-selected-0ee9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.link_8d3a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.purple_d190 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-clean-9765 {
    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);
}

.main-clean-9765:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-f481 {
    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);
}

.hero_selected_1ce7 {
    flex: 1;
}

.link-9096 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.slider-810b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.frame-538d {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-40ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-last-0f3e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-last-0f3e .hover_a0c8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-last-0f3e .thumbnail_action_8573 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_0fc5 {
    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);
}

.right-92b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-92b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.alert_thick_249a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_thick_249a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_7849 {
    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);
}

.west_7849:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_b8bb {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-fixed-42e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gas-f67d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.blue_4ca8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main-paper-7e49 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label-motion-bdb4 {
    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);
}

.footer_cool_4a29 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_29dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-0d01 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-7230 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_59a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.old_59a5 .tag-glass-6116 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.old_59a5 .outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-09ac {
    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);
}

.photo_d0e7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_d0e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_d0e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-5d79 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon-5d79:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic_1ee5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_6a7a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hot-a6e4 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.form_645d {
    padding: 1.5rem;
}

.menu_huge_171a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption_green_8094 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption_green_8094 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;
}

.caption_green_8094 li:last-child {
    border-bottom: none;
}

.caption_green_8094 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.notice_inner_78d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_inner_78d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-4ae0 {
    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);
}

.text-4ae0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-0817 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright_fd77 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.warm_31b9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture_dirty_10e8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.yellow_c2d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-new-ec7b {
    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);
}

.label-cbdd {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-fresh-4897 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_thick_10f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_stale_60b9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern-2045 {
    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);
}

.info-77c6 {
    text-align: center;
}

.tooltip-9340 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_ca99 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.short-9ad1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label-short-b1cc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-short-b1cc .tag-glass-6116 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label-short-b1cc .outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_1178 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_1178 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_1178 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_1ca8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table_1ca8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-hard-1edc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.inner-16a9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tag-glass-6116 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.static-6fd6 {
    padding: 1.5rem;
}

.outer_503d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plasma_7dcb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma_7dcb 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;
}

.plasma_7dcb li:last-child {
    border-bottom: none;
}

.plasma_7dcb li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sort-b9fa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.footer_32c3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_32c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north_e15d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_inner_95c6 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.huge_1947 {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.input_7a4e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-dd66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-997a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_f0af {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-liquid-0d32 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-e669 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.smooth_6c20 {
    display: flex;
    gap: 1rem;
}

.smooth_6c20 .smooth-196f {
    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;
}

.description_yellow_9c75 {
    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);
}

.heading_south_d5df {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.item_full_7fec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item_full_7fec 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;
}

.item_full_7fec li:last-child {
    border-bottom: none;
}

.item_full_7fec li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.header_pink_0891 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .header_pink_0891 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .header_pink_0891 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_485f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light_485f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-a8c1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.breadcrumb_7e00 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paper-4a51 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.copper_1207 {
    font-size: 1rem;
}

.element_bronze_5286 {
    padding: 1.5rem;
}

.highlight_basic_b562 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.logo-eb0d {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.logo-eb0d .info-77c6 {
    text-align: center;
}

.logo-eb0d .frame_ca99 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.logo-eb0d .info-079d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wrapper_stone_14b4 {
    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);
}

.wrapper_stone_14b4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.description_0298 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_0298 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-upper-31e6 {
    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);
}

.active-upper-31e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-ee3d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_middle_dd72 {
    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);
}

.fast-6c49 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-bright-67d4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-next-26ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-hard-e757 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.yellow-e3d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_da9e {
    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);
}

.heading-left-ebe7 {
    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;
}

.heading-left-ebe7.east-36db {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.heading-left-ebe7.message_upper_9f7f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.heading-left-ebe7.dim_d144 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.heading-left-ebe7.large_1354 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.heading-left-ebe7.table-4da8 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.button-0ecc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon_inner_cfe5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze-59f6 {
    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);
}

.smooth-0ba1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.plasma-44fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma-44fd 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;
}

.plasma-44fd li:last-child {
    border-bottom: none;
}

.plasma-44fd li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.highlight-563d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-563d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-563d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_motion_71d8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.progress_motion_71d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_motion_71d8.item-181a {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .progress_motion_71d8.item-181a {
        grid-column: span 3;
    }
}

.hidden-wood-ec8b {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.progress_motion_71d8.item-181a .hidden-wood-ec8b {
    background: rgba(6, 182, 212, 0.1);
}

.aside_2592 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rough-479a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.progress_motion_71d8.item-181a .rough-479a {
    color: var(--info-color);
}

.list_black_c2cf {
    padding: 1.5rem;
    text-align: center;
}

.up-f74b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.progress_motion_71d8.item-181a .up-f74b {
    color: var(--info-color);
}

.tag_baa9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.input_over_5e53 {
    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 */
.cool-0617 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-0617 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_purple_9633 {
    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);
}

.text_purple_9633:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_d6c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower_7114 {
    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);
}

.current_9903 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-rough-ae93 {
    flex: 1;
}

.overlay-green-ef1b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs-glass-4792 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_f6ce {
    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);
}

.over_c894 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thick-c69a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hard-9e9e {
    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);
}

.gallery_f419 {
  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);
}

.gallery_f419 .info-77c6 {
    text-align: center;
}

.gallery_f419 .tooltip-9340 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.gallery_f419 .frame_ca99 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shade-in-4dca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-d898 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-ca3b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bronze_0c37 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_e80c {
    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);
}

.pro-a383 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black-601a {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_f539 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block_f539 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_f539 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_e484 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hard_e484:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form-simple-9c37 {
    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);
}

.orange_714b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-cold-9c92 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.full_2cb6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full_2cb6.fluid_9f46 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.full_2cb6.motion-da02 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.full_2cb6.summary_9b45 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.paper-2769 {
    padding: 1.5rem;
    text-align: center;
}

.old_52a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wide_0d44 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wide_0d44 .logo_e941 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.texture_small_c725 {
    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);
}

.texture_small_c725:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search_57c0 {
  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);
}

.motion-dc6b {
    text-align: center;
}

.motion-dc6b .tooltip-9340 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.motion-dc6b .frame_ca99 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.brown-28e4 { text-align: center; }
.media-bbd4 { text-align: left; }
.first-f8f0 { text-align: right; }

.layout_8c5b { margin-bottom: 0; }
.media-inner-6e98 { margin-bottom: 0.5rem; }
.detail_blue_3e3d { margin-bottom: 1rem; }
.plasma_2476 { margin-bottom: 1.5rem; }
.caption_narrow_e969 { margin-bottom: 2rem; }

.backdrop_selected_1068 { margin-top: 0; }
.panel_hovered_ed4d { margin-top: 0.5rem; }
.main_f545 { margin-top: 1rem; }
.sidebar_4a08 { margin-top: 1.5rem; }
.article-steel-40a3 { margin-top: 2rem; }

.fn-hidden-742d { display: none; }
.fn-visible-742d { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .silver-145f {
        padding: 6rem 0 3rem;
    }
    
    .sidebar-black-0fb0 {
        text-align: center;
    }
    
    .wood_daf1 {
        text-align: center;
    }
    
    .hovered_41f3 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .warm_89bb,
    .element-c9fe,
    .column-plasma-0379,
    .badge_center_e8cd {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .silver-145f {
        background: none;
    }
}

/* Providers Section */
.thick-163c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_stone_713d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_stone_713d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_stone_713d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_wide_3264 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search_wide_3264:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_731f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.current_38ac {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.picture_bottom_8d33 {
    list-style: none;
    padding: 0;
}

.picture_bottom_8d33 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture_bottom_8d33 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.primary_medium_759f {
    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);
}

.primary_medium_759f p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.gradient-e1d0 {
    padding: var(--section-padding);
}

.primary-in-4612 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-in-4612 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_tiny_06b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_tiny_06b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dropdown_cb17 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.column_44bd {
    display: flex;
    flex-direction: column;
}

.description_403f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.component_new_d8d1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.lower_0b28 {
    color: var(--accent-color);
}

.tabs_4f5f {
    font-size: 1.25rem;
}

.bottom-46a4 {
    margin-bottom: 1rem;
}

.bottom-46a4 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.light_641d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.button-f49d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.info-77c6 {
    text-align: center;
}

.tooltip-9340 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_ca99 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.primary-lite-238c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-9d5d {
    margin: 2rem 0;
}

.chip_liquid_358c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.chip_liquid_358c .fast_91c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_stone_9766 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.left_cbc3 {
    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;
}

.left_cbc3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thumbnail_solid_d45c {
    font-size: 2rem;
}

.stone_1b65 {
    display: flex;
    flex-direction: column;
}

.medium-2229 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hover_tall_afb8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.summary-huge-225b {
    padding: var(--section-padding);
}

.center_7c8b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .center_7c8b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .center_7c8b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_a629 {
    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);
}

.hard_a629:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard_a629 .tooltip-9340 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.hard_a629 .frame_ca99 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.hard_a629 .pink-509c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.east_3bc5 {
    margin-top: 4rem;
}

.article_61a1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.avatar-mini-94c0 {
    overflow-x: auto;
}

.button-lower-be07 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.button-lower-be07 thead {
    background: var(--accent-color);
}

.button-lower-be07 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.button-lower-be07 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.button-lower-be07 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.button-lower-be07 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.filter-full-f4cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-left-ea97 {
    max-width: 900px;
    margin: 0 auto;
}

.mask_8af6 {
    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);
}

.mask_8af6:hover {
    border-color: var(--accent-color);
}

.next-d114 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.next-d114 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.north_5e86 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.mask_8af6.fn-active-742d .north_5e86 {
    transform: rotate(45deg);
}

.center_9e03 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.mask_8af6.fn-active-742d .center_9e03 {
    max-height: 1000px;
}

.center_9e03 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.overlay-dim-f73a {
    padding: var(--section-padding);
}

.green-96b2 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hidden-e45a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-smooth-cf1c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-smooth-cf1c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion_rough_f969 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_basic_a4ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-a6b9 {
    font-size: 2rem;
}

.media-selected-fbc9 {
    color: var(--text-white);
    margin: 0;
}

.full_a07d {
    list-style: none;
    padding: 0;
}

.full_a07d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.full_a07d li:last-child {
    border-bottom: none;
}

.soft-6e5a {
    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);
}

.soft-6e5a p {
    color: var(--success-color);
    margin: 0;
}

.texture-outer-5660 {
    margin-top: 3rem;
}

.heading_south_d5df {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wrapper-5aee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper-5aee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_blue_5d51 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thick-8bd9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wrapper_blue_5d51 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tag-hard-b7d8 {
    padding: var(--section-padding);
}

.element-clean-1671 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-clean-1671 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex-4806 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex-4806:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.form_cold_1301 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tag_hard_2f18 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fast_508f {
    flex: 1;
}

.static_861e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard_d7f6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.logo_e3e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-new-1663 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.button-new-1663:last-child {
    border-bottom: none;
}

/* Comparison Section */
.prev-02da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.filter-dfbb {
    padding: var(--section-padding);
}

.primary_silver_ce59 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.red_799a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_799a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label_b8ae {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-7c58, .filter-4460, .in-29ff {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.in-29ff {
    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 */
.tag-346f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-f89f {
    margin: 2rem 0;
}

.basic_f8bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-right-f63a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside_d4bd {
    list-style: none;
    padding: 0;
}

.aside_d4bd 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;
}

.aside_d4bd li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.aside_d4bd li:last-child {
    border-bottom: none;
}

.texture-4932 {
    text-align: center;
    margin-top: 2rem;
}

.last-62e2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.advanced-8776 {
    padding: var(--section-padding);
}

.title_stale_a36e {
    margin: 2rem 0;
}

.section_plasma_ca44 {
    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) {
    .section_plasma_ca44 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section_plasma_ca44:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static_01ef {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.focus-narrow-faff {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.overlay-8062 {
    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;
}

.video_under_d334 {
    flex: 1;
}

.item_659c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.frame-orange-65d4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.huge-4523 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.gradient_c949 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .gradient_c949 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pink_063a {
    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);
}

.pink_063a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pink_063a .tooltip-9340 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pink_063a .frame_ca99 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tertiary-blue-12d0 {
    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);
}

.small_1ec4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.small_1ec4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.motion-59fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .motion-59fb {
        grid-template-columns: 1fr 1fr;
    }
}

.box-ab83 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_f19c {
    margin-bottom: 1.5rem;
}

.next_f19c label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.next_f19c input,
.next_f19c 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;
}

.next_f19c input:focus,
.next_f19c select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.caption-dynamic-2e40 {
    width: 100%;
    margin-top: 1rem;
}

.footer-e746 {
    display: flex;
    align-items: center;
}

.pressed_db98 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb_glass_249c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.avatar-advanced-aa87 {
    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;
}

.focused_79fc {
    color: var(--text-gray);
}

.surface_simple_a02b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.component_94c9 {
    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);
}

.component_94c9 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.column-330a {
    margin-top: 3rem;
}

.menu_dirty_6ae3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.breadcrumb_old_de53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-1e56 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.video-motion-3831 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-motion-3831:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tag_f40d {
    padding: var(--section-padding);
}

.block_slow_e0b1 {
    margin: 2rem 0;
}

.border_cold_e2fb {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.over-be05 {
    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;
}

.over-be05:hover, .over-be05.fn-active-742d {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.icon_92ce {
    display: none;
}

.icon_92ce.fn-active-742d {
    display: block;
}

.pagination_left_03fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-ae5c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.element_df85 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.element_df85 ul {
    list-style: none;
    padding: 0;
}

.element_df85 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.element_df85 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.clean_a7cd {
    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 */
.accent-pink-f293 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_e5f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-9ec1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tall_9f81 {
    color: var(--accent-color);
    margin: 0;
}

.inner-4f7d {
    display: flex;
    gap: 1.5rem;
}

.thumbnail-c3b7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tooltip_affa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.advanced_938c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.advanced_938c.small-730d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.advanced_938c.liquid-144b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.advanced_938c.header-center-dac9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.message-dim-614d {
    margin-top: 2rem;
}

.content-8031 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_iron_e3e9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .notice_iron_e3e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-small-3ef0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tiny-e390 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_0ca0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tertiary_top_57f0 {
    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 */
.search_6b03 {
    padding: var(--section-padding);
}

.mini_a22f {
    margin: 2rem 0;
}

.alert_9382 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.red-f5be {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.column_top_314e {
    list-style: none;
    padding: 0;
}

.column_top_314e 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;
}

.column_top_314e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.column_top_314e li:last-child {
    border-bottom: none;
}

.medium-93cd {
    margin: 2rem 0;
}

.caption_dynamic_711e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.article_02c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .article_02c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled-dark-0527 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-839a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-fe31 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.background-d215 {
    margin-top: 2rem;
}

.carousel-simple-c859 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tag_c458 {
    list-style: none;
    padding: 0;
}

.section-637f {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.section-637f a {
    color: var(--accent-color);
    text-decoration: none;
}

.section-637f a:hover {
    text-decoration: underline;
}

.bright-c83b {
    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 */
.media_light_ef18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-6a9a {
    margin: 2rem 0;
}

.hidden-8df3 {
    margin-bottom: 3rem;
}

.hidden-8df3 .box-right-f63a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal_001b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.last_8205 {
    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);
}

.last_8205:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.main-3434 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .main-3434 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_left_5ec4 {
    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 */
.card_steel_a570 {
    padding: var(--section-padding);
}

.outer_1979 {
    margin: 2rem 0;
}

.table_gold_685c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.item-motion-64db {
    overflow-x: auto;
    margin: 2rem 0;
}

.container-purple-d895 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.footer_clean_9629 {
    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;
}

.container_cold_0e5a {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.gradient_static_b663 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gradient_static_b663 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_cold_570c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_cold_570c .fast_91c7 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.backdrop_cold_570c .tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny_f377 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.yellow-4d59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_black_d9ff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_black_d9ff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_aece {
    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;
}

.middle_aece:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.lower-0c4b {
    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);
}

.tertiary-narrow-e5a8 {
    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;
}

.shade-95c6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search-motion-b89c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.north_a717 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.current-1143 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-over-2e08 {
    color: var(--text-white);
    font-weight: 600;
}

.notice_613c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification_green_1f99 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification_green_1f99 .smooth-196f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.over-7d20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .over-7d20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_cc1c {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.action_cc1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.action_cc1c .tooltip-9340 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.action_cc1c .frame_ca99 {
    color: var(--text-gray);
    font-size: 1rem;
}

.caption-inner-1092 {
    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);
}

.border-8f50 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.border-8f50 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.main-paper-7e49 {
    margin: 2rem 0;
}

.label-motion-bdb4 {
    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);
}

.label-motion-bdb4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.footer_cool_4a29 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.steel-6cd6 {
    flex: 1;
}

.thumbnail_29dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-0d01 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.thumbnail-7230 {
    margin: 2rem 0;
}

.old_59a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old_59a5 .tag-glass-6116 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.old_59a5 .outer_503d {
    color: var(--text-gray);
    margin: 0;
}

.thick-09ac {
    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);
}

.thick-09ac .hover_simple_d5b8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tiny_f377 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.lite-f481 {
    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;
}

.hero_selected_1ce7 {
    flex: 1;
}

.slider-810b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.frame-538d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.huge_1947 {
    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;
}

.active_2627 {
    flex: 1;
}

.input_7a4e {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.overlay-dd66 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.form-liquid-0d32 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.header-e669 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.smooth_6c20 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.smooth_6c20 .smooth-196f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description_yellow_9c75 {
    margin-top: 2rem;
}

.description_yellow_9c75 .heading_south_d5df {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.grid-3468 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-2045 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pattern-2045 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-2045 .info-77c6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-9ad1 {
    margin: 2rem 0;
}

.label-short-b1cc {
    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 */
.banner-3a9f {
    padding: var(--section-padding);
}

.static-6fd6 {
    margin-top: 1rem;
}

.plasma_7dcb {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.plasma_7dcb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.plasma_7dcb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.button_under_9a08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_first_85a4 {
    margin: 2rem 0;
}

.nav-up-ea0a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.disabled_559a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.menu_c349 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.glass-6055 {
    margin: 2rem 0;
}

.section-f0d2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.section-f0d2 .box-right-f63a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_liquid_83ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thumbnail_liquid_83ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip_c559 {
    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);
}

.popup-20cd {
    color: var(--text-white);
    font-weight: 600;
}

.info_aaee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.item_4276 {
    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);
}

.item_4276 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.breadcrumb-1a7b {
    padding: var(--section-padding);
}

.label-f411 {
    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;
}

.label-f411:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.brown_4225 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brown_4225 .thick-8bd9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.brown_4225 .pink_980a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.border-b789 {
    flex: 1;
}

.outline-dirty-e94d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.module-fresh-2043 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-fresh-2043 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.module-fresh-2043 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.caption-57cf {
    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);
}

.caption-57cf p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.caption-57cf strong {
    color: var(--warning-color);
}

/* Slots Section */
.box_716a {
    padding: var(--section-padding);
}

.stone_be34 {
    margin: 2rem 0;
}

/* Table Games Section */
.grid-hot-a2f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside-fast-939c {
    margin: 2rem 0;
}

.wrapper-iron-d17c {
    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);
}

.wrapper-iron-d17c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper-iron-d17c .paper-4a51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-iron-d17c .highlight_basic_b562 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.modal-hard-9a5d {
    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);
}

.modal-hard-9a5d .hover_simple_d5b8 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.heading-inner-6d61 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered_a986 {
    margin: 2rem 0;
}

.simple-2850 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_last_c2af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_east_2c2f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.iron_11cb {
    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);
}

.iron_11cb:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.iron_11cb.fn-active-742d {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-outer-f29c {
    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);
}

.wide_6847 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wide_6847 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.outer_21b7 {
    padding: var(--section-padding);
}

.soft-a921 {
    margin: 2rem 0;
}

.widget-484f {
    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);
}

.widget-484f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .widget-484f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.heading-3cf5 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.soft-f544 {
    flex: 1;
}

.steel-dcf1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.alert-action-c0fc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.title_pro_70c5 {
    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;
}

.active-dynamic-718c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.widget_basic_50e4 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pattern-first-c649 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input-ac79 {
    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;
}

.input-ac79:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.silver-f49b {
    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);
}

.under_5cc9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.under_5cc9 strong {
    color: var(--accent-color);
}

/* New Games Section */
.wood-4eb0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-8f43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag-8f43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-8f43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_full_76eb {
    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;
}

.media_full_76eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.item_a3b4 {
    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;
}

.form-c308 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.item-inner-d8b0 {
    font-size: 2rem;
}

.box-cool-bb5f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.border-steel-ce33 {
    flex: 1;
}

.notification_ac14 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.article-mini-4366 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.icon_9c00 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.aside-f4fa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.outline-1253 {
    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;
}

.text-9ac8 {
    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;
}

.text-9ac8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal-f9ce {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-2cea {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_b183 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .message_b183 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-51c8 {
    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);
}

.main-febc {
    color: var(--text-white);
    font-weight: 600;
}

.rough_851b {
    color: var(--accent-color);
    font-weight: 600;
}

.static-a869 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.static-a869 strong {
    color: var(--accent-color);
}

/* Security Section */
.item_5704 {
    padding: var(--section-padding);
}

/* Benefits Section */
.info-in-9515 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.mask-a766 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.heading-5a82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_fec5 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.outer-dfd4 {
    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) {
    .outer-dfd4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.outer-dfd4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.outer-dfd4 .huge_1947 {
    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;
}

.outer-dfd4 .active_2627 {
    flex: 1;
}

.outer-dfd4 .input_7a4e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.outer-dfd4 .overlay-dd66 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.popup-1bf8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-1bf8 .overlay-green-ef1b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup-1bf8 .menu-7eee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-1bf8 .menu-7eee li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.popup-1bf8 .menu-7eee li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.overlay-c40f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.notification-iron-f11a {
    padding: var(--section-padding);
}

.backdrop-lower-9c66 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .backdrop-lower-9c66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-e074 {
    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);
}

.old-e074:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.old-e074 .thick_f03c {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-e074 .old_f299 {
    flex: 1;
}

.old-e074 .hover_a0c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old-e074 .nav-aa7c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dropdown-blue-a2d5 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-blue-a2d5 .article_cce5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-blue-a2d5 .green-5cf6 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.dropdown-blue-a2d5 .green-5cf6 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);
}

.dropdown-blue-a2d5 .green-5cf6 li:last-child {
    border-bottom: none;
}

.dropdown-blue-a2d5 .green-5cf6 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;
}

.dropdown-blue-a2d5 .green-5cf6 li strong {
    color: var(--text-white);
}

.container-new-fb39 {
    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);
}

.container-new-fb39 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container-new-fb39 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.row-1983 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-purple-b2e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-purple-b2e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hover_tiny_e15b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover_tiny_e15b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider-c363 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-48d2 {
    font-size: 2rem;
}

.background_51e9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.video-white-2063 {
    flex: 1;
}

.main-prev-4da2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-prev-4da2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.main-prev-4da2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.input-hovered-13db {
    margin-top: 3rem;
}

.alert_9382 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.red-f5be {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column_top_314e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_top_314e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.column_top_314e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.column_top_314e li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.title-fast-b982 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_lite_602f {
    margin: 2rem 0;
}

.first_6745 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.first_6745 .box-right-f63a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_90ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .warm_90ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

.warm-9eda {
    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);
}

.warm-9eda:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dark_e760 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-4117 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pattern-in-50c6 {
    padding: var(--section-padding);
}

.panel_brown_d32b {
    margin: 2rem 0;
}

.label-db18 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .label-db18 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-db18 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_7e25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tall_7e25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_a20c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.input-6411 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.purple-95dd {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.purple-95dd.east_df5c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.old_a098 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.header-thick-7bdd {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.breadcrumb-huge-06a5 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress_tall_f2a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.right_7841 {
    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);
}

.right_7841 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.right_7841 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.paper_f74c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide-d027 {
    margin: 2rem 0;
}

.primary_0c32 {
    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) {
    .primary_0c32 {
        flex-direction: column;
        gap: 1rem;
    }
}

.primary_0c32:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.primary_0c32::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);
}

.alert_70cc {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.medium_d6d1 {
    flex: 1;
}

.in-2b7f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pattern_stale_2a06 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_stale_2a06 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-47f8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_c360 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.easy_d005 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .easy_d005 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_67af {
    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);
}

.description_south_b506 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary_fixed_c057 {
    flex: 1;
}

.dropdown-4bf7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.icon_west_f254 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section-31af {
    margin-top: 2rem;
    text-align: center;
}

.tiny-a193 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tiny-a193 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.description_0298 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_0298 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-upper-31e6 {
    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);
}

.active-upper-31e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.active-upper-31e6 .column-0817 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-upper-31e6 .bright_fd77 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.active-upper-31e6 .warm_31b9 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.active-upper-31e6 .picture_dirty_10e8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.list_paper_87c8 {
    padding: var(--section-padding);
}

.section_middle_dd72 .description-ca03 {
    flex: 1;
}

/* Promo Calendar Section */
.fixed-69b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.center_9cc0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_9cc0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-motion-8174 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_ea87 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.border-center-f801 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.up_0d45 {
    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);
}

.pattern-fcd6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row_655f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.badge_upper_3180 {
    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);
}

.badge_upper_3180 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.badge_upper_3180 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.carousel-84e5 {
    padding: var(--section-padding);
}

.carousel_red_a236 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel_red_a236 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.out_5c01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_motion_ece9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_609f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_609f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.table_right_0c03 {
    margin-top: 3rem;
}

.table_right_0c03 .alert_9382 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.table_right_0c03 .red-f5be {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_right_0c03 .column_top_314e {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.table_right_0c03 .column_top_314e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.table_right_0c03 .column_top_314e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.table_right_0c03 .column_top_314e li strong {
    color: var(--warning-color);
}

.photo-6743 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo-6743 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.avatar-inner-a3e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-fe2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-fe2e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_3ef9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_3ef9 .box-right-f63a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.wrapper_fast_8e76 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagination-left-45f1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.pagination-left-45f1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.popup_b108 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_815b {
    flex: 1;
}

.solid_4ae9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.iron-47ea {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fluid_5079 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.panel-160c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focused_b79b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .focused_b79b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_686c {
    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);
}

.element_686c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-hard-4349 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-60c7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.small_1ec4 {
    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);
}

.section_18b7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.section_18b7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.content-steel-d44f { 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; }
.tooltip_2890, .dark-6b48 { max-width:100%; height:auto; }

.sidebar_6fea, .table_40ac, .new-74b9 { white-space:normal; }

.sidebar-black-0fb0,
.wood_daf1,
.cool-0617,
.description_0298,
.thumbnail-7230,
.block_f539 {
  flex-wrap:wrap;
}

[class*="grid"],
.focused_b79b,
.label-db18,
.active-869d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.silver-145f img,
.wood_daf1 img,
.dropdown-d48e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.content_advanced_b6ee, .item-light-6aac,
.pressed-42b2, .top_9652 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.avatar-mini-94c0 { width:100%; overflow-x:auto; }
.avatar-mini-94c0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.mask_stone_713d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .mask_stone_713d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.search_wide_3264 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.center_7c8b,
.new_394a,
.shadow-medium-9837,
.card_solid_cc30,
.gradient_c949,
.focused_b79b,
.label-db18,
.active-869d,
.search_57c0,
.soft-a921,
.mask_stone_713d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .center_7c8b,
  .new_394a,
  .shadow-medium-9837,
  .card_solid_cc30,
  .gradient_c949,
  .focused_b79b,
  .label-db18,
  .active-869d,
  .search_57c0,
  .soft-a921,
  .mask_stone_713d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.hard_a629,
.pink_063a,
.element_686c,
.east_5346,
.tall_7e25,
.motion-dc6b,
.widget-484f,
.search_wide_3264 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.pagination-6a48,
.list_aa3a,
.accordion_short_dde2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pagination-6a48 > *,
.list_aa3a > *,
.accordion_short_dde2 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: bf93 */
.ghost-box-z4 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
