/* {$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;
}

.dropdown-fresh-a7c4 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.icon_21c3 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .icon_21c3 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .icon_21c3 {
        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 */
.last_bbfa {
    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);
}

.icon_fast_581c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .icon_fast_581c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .overlay_a0b3 {
        grid-column: 1;
    }
    
    .surface-3381 {
        grid-column: 2;
    }
    
    .hidden_42ce {
        grid-column: 3;
    }
}

.overlay_a0b3 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.overlay_a0b3:hover img {
    transform: scale(1.05);
}

/* Navigation */
.element-362f {
    display: none;
}

@media (min-width: 1024px) {
    .element-362f {
        display: block;
    }
}

/* Grouped Navigation */
.carousel_medium_7cbe {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.feature_red_1a92 {
    position: relative;
}

.easy_d743 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.feature_red_1a92 .message_orange_3b98 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.message_orange_3b98 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fluid-0aaa {
    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;
}

.fluid-0aaa:hover,
.fluid-0aaa.fn-active-6ee3 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.video_b2b3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .video_b2b3 {
        display: flex;
    }
}

/* Mobile Register Button */
.surface-3381 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface-3381 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.row_stone_c2f3 {
    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;
}

.row_stone_c2f3::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 */
.hidden_42ce {
    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) {
    .hidden_42ce {
        display: none;
    }
}

.hidden_42ce span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hidden_42ce.fn-active-6ee3 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hidden_42ce.fn-active-6ee3 span:nth-child(2) {
    opacity: 0;
}

.hidden_42ce.fn-active-6ee3 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.item-f8e8 {
    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;
}

.item-f8e8.fn-active-6ee3 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.highlight-purple-4c76 {
    overflow: hidden;
}

.white_8c0b {
    list-style: none;
    padding: 0.75rem 0;
}

.accent-gas-11ac {
    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;
}

.accent-gas-11ac:hover,
.accent-gas-11ac.fn-active-6ee3 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.accent-gas-11ac.description_73df {
    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;
}

.accent-gas-11ac.description_73df::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 */
.tertiary-inner-ed4f {
    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;
}

.fluid-2875 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.fluid-2875:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.last-6250 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.last-6250:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.plasma_bba7 {
    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;
}

.plasma_bba7:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.detail-fa52 {
    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;
}

.surface-soft-9e88 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.surface-soft-9e88:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.label_c8c8 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.label_c8c8:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.surface_1322 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.surface_1322:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.medium_4a8f {
    font-size: 1em;
    font-weight: 700;
}

.shade_advanced_25c4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.chip-9ede {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.chip-9ede::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;
}

.video-fb4f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .video-fb4f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.filter-93df {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.feature_c854 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.light-a7e0 {
    margin-bottom: 2rem;
}

.tag_cool_2fd1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tag_cool_2fd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_cool_2146 {
    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);
}

.photo_f5ae {
    font-size: 1.5rem;
}

.summary_df6b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tall_8c06 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel_cc39 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.panel_cc39:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.avatar_a9af {
    text-align: center;
    margin-bottom: 3rem;
}

.in-ac7a {
    margin-bottom: 1rem;
}

.warm_573c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.texture_c45c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .texture_c45c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .texture_c45c.search-7013 {
        direction: rtl;
    }
    
    .texture_c45c.search-7013 > * {
        direction: ltr;
    }
}

.texture_clean_b46e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.texture_clean_b46e:first-child {
    margin-top: 0;
}

.dropdown-f6b0 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gas-283e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gas-283e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.disabled-bottom-328d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-bottom-328d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo_d813 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-7f17 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.action-95a1 {
    list-style: none;
}

.action-95a1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action-95a1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.left-13c2 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.form-ccad {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-complex-d6a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.element_947b {
    margin: 2rem 0;
}

.surface-9f59 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.south-5a05 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.chip_active_196d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.upper_6c30 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pagination-5db2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-5db2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood-8b2a {
    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);
}

.wood-8b2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status-ecdf {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.center_3019 {
    font-size: 1.5rem;
}

.menu-5419 {
    color: var(--accent-color);
    margin: 0;
}

.upper_c935 {
    list-style: none;
}

.upper_c935 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.upper_c935 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.carousel-2f39 {
    margin: 2rem 0;
}

.stale_c6b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.block_gas_ff46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .block_gas_ff46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-bc3d {
    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);
}

.brown_9f0c {
    font-size: 1.25rem;
}

.component-9b14 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.logo_6637,
.badge_focused_3cc4 {
    text-align: center;
    margin: 2rem 0;
}

.content-8171,
.detail_1213 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.secondary-94ff {
    margin: 2rem 0;
    text-align: center;
}

.content_first_762f {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content_first_762f::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;
}

.paper_e331 {
    position: relative;
    z-index: 1;
}

.hard-88c3 {
    margin-bottom: 1rem;
}

.tag-4077 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-soft-f079 {
    margin-bottom: 3rem;
}

.mini-da79 {
    margin-top: 3rem;
}

.box_699d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .box_699d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_699d .status_cool_2146 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.blue-71be {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav-silver-f911 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.disabled_prev_171d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.form_fabd {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .form_fabd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_fabd {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.sidebar-narrow-7837 {
    margin-bottom: 1rem;
}

.small-62ed img {
    margin-bottom: 1rem;
}

.glass_a291 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_6a44 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.title-purple-9985 {
    list-style: none;
}

.title-purple-9985 li {
    margin-bottom: 0.5rem;
}

.title-purple-9985 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.title-purple-9985 a:hover {
    color: var(--accent-color);
}

.tertiary_steel_275f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module_d567 {
    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);
}

.module_d567:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.paragraph-036e {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.paragraph-036e p {
    margin-bottom: 0.25rem;
}

.surface-light-7f9e {
    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) {
    .surface-light-7f9e {
        flex-direction: row;
    }
}

.progress-light-971d {
    text-align: center;
}

@media (min-width: 768px) {
    .progress-light-971d {
        text-align: left;
    }
}

.progress-light-971d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active-gold-e00e {
    font-size: 0.75rem !important;
}

.motion-d5bb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.inner-2025 {
    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);
    }
}

.element_601a {
    animation: fadeInUp 0.6s ease-out;
}

.bottom_6a82 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.primary-outer-ea1c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-outer-ea1c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.header-mini-ae9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-mini-ae9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-9aef {
    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);
}

.element-9aef .notice-complex-d6a7 {
    font-size: 1.25rem;
}

.element-9aef .box-red-9634 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tooltip_bottom_178d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tooltip_bottom_178d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white_763d {
    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);
}

.white_763d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_689a {
    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);
}

.hard-0a01 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active_wood_eed5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-gas-680f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_dark_a94c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_dark_a94c .button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_dark_a94c .form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-49a7 {
    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);
}

.pressed_20f0 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pressed_20f0 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.pressed_20f0 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tag-complex-f04f {
    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);
}

.focused-1dbf {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.easy_22ad {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.easy_22ad label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy_22ad 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);
}

.easy_22ad input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.easy_22ad input::placeholder {
    color: var(--text-muted);
}

.wide_9e10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pattern-small-f12b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.pattern-small-f12b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.wrapper-db52 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.wrapper-db52:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.block_gas_ff46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_gas_ff46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-bc3d {
    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);
}

.tiny-bc3d .brown_9f0c {
    font-size: 1.25rem;
}

.tiny-bc3d .component-9b14 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.next_229d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-8521 {
    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);
}

.photo-8521 .notice-complex-d6a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-8521 .button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.photo-8521 .form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-aa9c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label-5077 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label-5077 .gradient-green-6675 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label-5077 .logo_active_8563 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick_3ba2 {
    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);
}

.highlight_upper_ec93 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_upper_ec93 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-bottom-2d92 {
    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);
}

.notice-bottom-2d92:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_6a4c {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tertiary_41a8 {
    flex: 1;
}

.focus-complex-7345 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.modal-steel-89f9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.list_fixed_a0ae {
    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);
}

.list_fixed_a0ae:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.shade-first-986f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-first-986f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_1cf0 {
    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);
}

.easy_1cf0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-soft-2075 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last-445e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature_0325 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.inner-957f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary_bfbc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick-f482 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_eea4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_eea4 .gold-c71a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_eea4 .image_silver_ab56 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-warm-2a17 {
    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);
}

.shadow_gold_3b10 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_29ec {
    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);
}

.banner_29ec .notice-complex-d6a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner_29ec .button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner_29ec .form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-a5f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright-a5f9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_cc74 {
    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);
}

.title_cc74:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.purple_2bbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple_2bbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_simple_ab51 {
    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);
}

.search_simple_ab51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth-6a12 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-c004 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.south-5a05 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.picture_711d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.highlight_hot_4a15 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button_fd33 {
    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);
}

.button_fd33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_1a15 {
    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);
}

.sort-old-481e {
    flex: 1;
}

.video_short_4e73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.logo_advanced_e581 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.out_860e {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_161e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-fresh-42ab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-fresh-42ab .gradient-green-6675 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button-fresh-42ab .logo_active_8563 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_focused_3cc4 {
    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);
}

.slider_silver_3bc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_silver_3bc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.item-large-b552 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-large-b552 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-612d {
    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);
}

.menu-612d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel-71da {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-dirty-d5c6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver-da83 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.breadcrumb-baaa {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern_be07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full-a6e3 {
    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);
}

.slider_soft_5c62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_down_6484 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_5270 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_gold_3b10 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_29ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.banner_29ec .button-stale-d416 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_29ec .form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_53c8 {
    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);
}

.highlight_bd3f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_bd3f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_bd3f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video_small_5f9b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video_small_5f9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description_fe71 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-purple-a6a7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accent-lite-cdb6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dynamic-a9d5 {
    padding: 1.5rem;
}

.tooltip-copper-1055 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner_ac18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_ac18 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;
}

.banner_ac18 li:last-child {
    border-bottom: none;
}

.banner_ac18 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.fluid-0526 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-0526 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_59bb {
    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);
}

.carousel_59bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_ddf0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-liquid-366f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-advanced-c966 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer-inner-a0a7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge_full_44ff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-lite-366a {
    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);
}

.sidebar-5e53 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_295b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-9d24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-first-88ff {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.content-east-c2f1 {
    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);
}

.gallery_glass_fa8d {
    text-align: center;
}

.gallery_fast_0935 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.down_da41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-cold-8845 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-cold-8845 .button-stale-d416 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay-cold-8845 .form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-1edb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .liquid-1edb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-1edb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_prev_d019 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery_prev_d019:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-ce60 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.content_top_1e9b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button-stale-d416 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.carousel-8007 {
    padding: 1.5rem;
}

.form-ed53 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.easy-39b0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-39b0 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;
}

.easy-39b0 li:last-child {
    border-bottom: none;
}

.easy-39b0 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.hot-2165 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.center-c8c9 {
    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);
}

.center-c8c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium_c378 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top_f8b1 {
    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);
}

.copper_689a {
    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;
}

.hard-0a01 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_wood_eed5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-05e8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east_da3f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.block-4383 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-56f6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-middle-71dc {
    display: flex;
    gap: 1rem;
}

.menu-middle-71dc .banner_ea85 {
    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;
}

.logo_easy_3fd2 {
    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);
}

.panel-04a7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_dirty_2904 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_dirty_2904 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;
}

.active_dirty_2904 li:last-child {
    border-bottom: none;
}

.active_dirty_2904 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.hard_7a63 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard_7a63 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_7a63 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-tall-ec8d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.frame-tall-ec8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev-3b9f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.iron_8658 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gold-c71a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hot_85ef {
    font-size: 1rem;
}

.list-white-ef2b {
    padding: 1.5rem;
}

.image_silver_ab56 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tag_paper_31fd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tag_paper_31fd .gallery_glass_fa8d {
    text-align: center;
}

.tag_paper_31fd .dropdown-tiny-5bcc {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tag_paper_31fd .badge_top_f278 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon_center_5f56 {
    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);
}

.icon_center_5f56:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.complex-0369 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-0369 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-91e7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert-91e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-2377 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple_d8af {
    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);
}

.wrapper-lite-dacf {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-wide-69f6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thick_050f {
    color: var(--text-gray);
    line-height: 1.6;
}

.small_924a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.filter-e603 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-214d {
    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);
}

.new-57c9 {
    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;
}

.new-57c9.message-2f1a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.new-57c9.old-73e9 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.new-57c9.search_fast_491e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.new-57c9.left-353e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.new-57c9.dropdown_top_2410 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.nav_fluid_4a63 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid_309c {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex-2416 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_liquid_a933 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.east-aa9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-aa9c 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;
}

.east-aa9c li:last-child {
    border-bottom: none;
}

.east-aa9c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.aside-silver-a2f4 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-silver-a2f4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-silver-a2f4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_6cdf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.small_6cdf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_6cdf.hero_large_7152 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .small_6cdf.hero_large_7152 {
        grid-column: span 3;
    }
}

.notification-old-0736 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.small_6cdf.hero_large_7152 .notification-old-0736 {
    background: rgba(6, 182, 212, 0.1);
}

.icon-aba5 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.over_6876 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.small_6cdf.hero_large_7152 .over_6876 {
    color: var(--info-color);
}

.accordion-7500 {
    padding: 1.5rem;
    text-align: center;
}

.slider-under-a2d1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.small_6cdf.hero_large_7152 .slider-under-a2d1 {
    color: var(--info-color);
}

.fresh_0934 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.backdrop_cold_46a2 {
    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 */
.shade-aa3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-aa3d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_next_1080 {
    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);
}

.background_next_1080:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_north_6b26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-8521 {
    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);
}

.brown_9f0c {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-black-ce3f {
    flex: 1;
}

.stale_c6b7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark-87cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_brown_fe1f {
    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);
}

.heading-6e47 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.label_e3a8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.inner-2025 {
    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);
}

.rough-e191 {
  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);
}

.rough-e191 .gallery_glass_fa8d {
    text-align: center;
}

.rough-e191 .gallery_fast_0935 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.rough-e191 .dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo_ea47 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-4b20 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_over_a8fc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white_99f7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone_e3b8 {
    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);
}

.banner_thick_6cf2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_81b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-b078 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic-b078 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-b078 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm-66f1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.warm-66f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_bc1d {
    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);
}

.tooltip-medium-8658 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.caption-new-a68a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.mini-786b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-786b.basic-d2e1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.mini-786b.narrow-d99f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.mini-786b.paragraph-steel-732e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.icon_in_a6ec {
    padding: 1.5rem;
    text-align: center;
}

.background-8040 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal_bright_1b27 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal_bright_1b27 .preview_a1af {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.logo-3a5b {
    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);
}

.logo-3a5b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gold-222e {
  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);
}

.pink_7db5 {
    text-align: center;
}

.pink_7db5 .gallery_fast_0935 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.pink_7db5 .dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.picture-soft-8bb9 { text-align: center; }
.brown_6e99 { text-align: left; }
.panel-west-5361 { text-align: right; }

.widget-cold-5ff1 { margin-bottom: 0; }
.tag_ce14 { margin-bottom: 0.5rem; }
.over_ef67 { margin-bottom: 1rem; }
.slider-995a { margin-bottom: 1.5rem; }
.focus_paper_eae0 { margin-bottom: 2rem; }

.message_wide_6559 { margin-top: 0; }
.widget-f3d7 { margin-top: 0.5rem; }
.wood-3bd1 { margin-top: 1rem; }
.widget-east-66c5 { margin-top: 1.5rem; }
.gradient_de68 { margin-top: 2rem; }

.fn-hidden-6ee3 { display: none; }
.fn-visible-6ee3 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .chip-9ede {
        padding: 6rem 0 3rem;
    }
    
    .video-fb4f {
        text-align: center;
    }
    
    .texture_c45c {
        text-align: center;
    }
    
    .tag_cool_2fd1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .last_bbfa,
    .item-f8e8,
    .content_first_762f,
    .disabled_prev_171d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .chip-9ede {
        background: none;
    }
}

/* Providers Section */
.fast_b7e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-86c7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static-86c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static-86c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-ebf0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag-ebf0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gradient-copper-51ae {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advanced_eda8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element-rough-3570 {
    list-style: none;
    padding: 0;
}

.element-rough-3570 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.element-rough-3570 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.secondary-bottom-248b {
    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);
}

.secondary-bottom-248b p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.block_a37b {
    padding: var(--section-padding);
}

.caption-31cd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-31cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-1bad {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.chip-1bad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.box-dynamic-6d05 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.plasma-47a2 {
    display: flex;
    flex-direction: column;
}

.row_fd25 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.popup_c0e6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slider_hot_84cc {
    color: var(--accent-color);
}

.header-fa42 {
    font-size: 1.25rem;
}

.title_lower_849e {
    margin-bottom: 1rem;
}

.title_lower_849e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.element-b6fe {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-9b8b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.gallery_glass_fa8d {
    text-align: center;
}

.gallery_fast_0935 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.static_984d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-6491 {
    margin: 2rem 0;
}

.text_2716 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.text_2716 .notice-complex-d6a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_new_59d1 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination_ee0e {
    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;
}

.pagination_ee0e:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.down_076b {
    font-size: 2rem;
}

.sidebar_simple_524f {
    display: flex;
    flex-direction: column;
}

.header_wood_d877 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.icon_f59f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.box_6428 {
    padding: var(--section-padding);
}

.complex_308b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .complex_308b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex_308b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_gold_1455 {
    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);
}

.alert_gold_1455:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_gold_1455 .gallery_fast_0935 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.alert_gold_1455 .dropdown-tiny-5bcc {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.alert_gold_1455 .icon-hard-25bf {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.alert_advanced_07f5 {
    margin-top: 4rem;
}

.current-0dde {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.column-inner-d0cf {
    overflow-x: auto;
}

.center-5326 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.center-5326 thead {
    background: var(--accent-color);
}

.center-5326 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.center-5326 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.center-5326 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.center-5326 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.top-2950 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-short-95ca {
    max-width: 900px;
    margin: 0 auto;
}

.blue_a889 {
    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);
}

.blue_a889:hover {
    border-color: var(--accent-color);
}

.menu-7088 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.menu-7088 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.old-5716 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.blue_a889.fn-active-6ee3 .old-5716 {
    transform: rotate(45deg);
}

.hero-2a71 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.blue_a889.fn-active-6ee3 .hero-2a71 {
    max-height: 1000px;
}

.hero-2a71 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.notification-4eea {
    padding: var(--section-padding);
}

.pressed_20f0 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.header-0236 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-98b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-98b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro-1cd9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper-962c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.medium_1d37 {
    font-size: 2rem;
}

.avatar-4a51 {
    color: var(--text-white);
    margin: 0;
}

.item_67d8 {
    list-style: none;
    padding: 0;
}

.item_67d8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item_67d8 li:last-child {
    border-bottom: none;
}

.cool_151c {
    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);
}

.cool_151c p {
    color: var(--success-color);
    margin: 0;
}

.summary_6396 {
    margin-top: 3rem;
}

.panel-04a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.box-8485 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box-8485 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider-upper-3855 {
    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);
}

.huge_2d35 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slider-upper-3855 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.focus-basic-8ffe {
    padding: var(--section-padding);
}

.column_cool_c644 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_cool_c644 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-f43d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze-f43d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icon-upper-5ce4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar_bd15 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel_lite_32b3 {
    flex: 1;
}

.breadcrumb_wide_5cf7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.border-gold-9af4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.logo-slow-974f {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_1a4e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card_1a4e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.message-ba25 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.under_6f2b {
    padding: var(--section-padding);
}

.secondary_east_50aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.slow_ceb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_ceb9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_d0a6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_18b1, .upper_9a41, .dark-3856 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.dark-3856 {
    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 */
.hard_197e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-c965 {
    margin: 2rem 0;
}

.paper-a07c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_d0b1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert_4fac {
    list-style: none;
    padding: 0;
}

.alert_4fac 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;
}

.alert_4fac li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert_4fac li:last-child {
    border-bottom: none;
}

.east_b784 {
    text-align: center;
    margin-top: 2rem;
}

.current-3442 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.grid_inner_7283 {
    padding: var(--section-padding);
}

.info_soft_5dab {
    margin: 2rem 0;
}

.notice_soft_64c8 {
    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) {
    .notice_soft_64c8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notice_soft_64c8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message-4523 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.feature-outer-95f9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.action_2de6 {
    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;
}

.sort_f078 {
    flex: 1;
}

.west-e4db {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.description-ca3e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.link-down-9a53 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.notification_7651 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .notification_7651 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature_0b8c {
    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);
}

.feature_0b8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_0b8c .gallery_fast_0935 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature_0b8c .dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 1rem;
}

.notification-bottom-3869 {
    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);
}

.mask_052c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.mask_052c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.tag_b3f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .tag_b3f5 {
        grid-template-columns: 1fr 1fr;
    }
}

.title-silver-3e94 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_dim_19b8 {
    margin-bottom: 1.5rem;
}

.pagination_dim_19b8 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pagination_dim_19b8 input,
.pagination_dim_19b8 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;
}

.pagination_dim_19b8 input:focus,
.pagination_dim_19b8 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.header-orange-4ed5 {
    width: 100%;
    margin-top: 1rem;
}

.title_bb72 {
    display: flex;
    align-items: center;
}

.grid_afad {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.last_9636 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.header-cc5b {
    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;
}

.bottom_548f {
    color: var(--text-gray);
}

.disabled_473f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.layout_a9d7 {
    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);
}

.layout_a9d7 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gradient-8e3e {
    margin-top: 3rem;
}

.article_874a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.box-wood-8c8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver-0c8d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.right_7192 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right_7192:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.paragraph_gold_c938 {
    padding: var(--section-padding);
}

.large_2c98 {
    margin: 2rem 0;
}

.photo-272e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.overlay_c9ed {
    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;
}

.overlay_c9ed:hover, .overlay_c9ed.fn-active-6ee3 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.overlay_6586 {
    display: none;
}

.overlay_6586.fn-active-6ee3 {
    display: block;
}

.picture-static-1def {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west-9b43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hidden_large_f084 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hidden_large_f084 ul {
    list-style: none;
    padding: 0;
}

.hidden_large_f084 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hidden_large_f084 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.out_d51c {
    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 */
.label-7c02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-cold-8e54 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-light-0729 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside_full_69de {
    color: var(--accent-color);
    margin: 0;
}

.filter_205d {
    display: flex;
    gap: 1.5rem;
}

.container-1a38 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.west_99ea {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.frame_29e6 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.frame_29e6.shadow_9085 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.frame_29e6.backdrop_over_0268 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.frame_29e6.stone-ed99 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pro-ae67 {
    margin-top: 2rem;
}

.main_3df8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.in_d957 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .in_d957 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_0c16 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.footer_full_4952 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hover-narrow-dc88 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tertiary_clean_47fe {
    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 */
.alert-north-14a6 {
    padding: var(--section-padding);
}

.soft_aa82 {
    margin: 2rem 0;
}

.list-white-2d8e {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.medium-99aa {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.overlay-gold-8f8f {
    list-style: none;
    padding: 0;
}

.overlay-gold-8f8f 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;
}

.overlay-gold-8f8f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.overlay-gold-8f8f li:last-child {
    border-bottom: none;
}

.black-2b73 {
    margin: 2rem 0;
}

.aside-099e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard-e84a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard-e84a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_9f5c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-e057 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main-f56c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.top-fc88 {
    margin-top: 2rem;
}

.focus-complex-7345 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.highlight_e3da {
    list-style: none;
    padding: 0;
}

.message-24f6 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.message-24f6 a {
    color: var(--accent-color);
    text-decoration: none;
}

.message-24f6 a:hover {
    text-decoration: underline;
}

.slow-d528 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.module_119a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-f800 {
    margin: 2rem 0;
}

.glass-46f3 {
    margin-bottom: 3rem;
}

.glass-46f3 .yellow_d0b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dim_382f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-pink-5365 {
    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);
}

.footer-pink-5365:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.content_cb30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .content_cb30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-b1a0 {
    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 */
.element-plasma-cbe1 {
    padding: var(--section-padding);
}

.table_2c51 {
    margin: 2rem 0;
}

.table-e6d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.warm-be2c {
    overflow-x: auto;
    margin: 2rem 0;
}

.menu-north-ea9c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.column-silver-4cd2 {
    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;
}

.tertiary_upper_27de {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.dim_928e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .dim_928e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_5030 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_5030 .notice-complex-d6a7 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.mask_5030 .button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-easy-31ac {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.block-d683 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_37d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_37d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_3c9a {
    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;
}

.mask_3c9a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.title-821f {
    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);
}

.yellow-c4e3 {
    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;
}

.detail_2135 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-basic-04c6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.lite-cad6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.top_faf6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-lite-fb95 {
    color: var(--text-white);
    font-weight: 600;
}

.slider_upper_41e5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.component_west_ff17 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.component_west_ff17 .banner_ea85 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.middle_0af4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle_0af4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-351e {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button-351e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button-351e .gallery_fast_0935 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button-351e .dropdown-tiny-5bcc {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort_active_a5c0 {
    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);
}

.iron-0b77 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.iron-0b77 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.pattern_be07 {
    margin: 2rem 0;
}

.full-a6e3 {
    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);
}

.full-a6e3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.slider_soft_5c62 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice_hard_37bb {
    flex: 1;
}

.dropdown_down_6484 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_5270 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.shadow_gold_3b10 {
    margin: 2rem 0;
}

.banner_29ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_29ec .button-stale-d416 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.banner_29ec .form-ed53 {
    color: var(--text-gray);
    margin: 0;
}

.sort_53c8 {
    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);
}

.sort_53c8 .content-8171 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.card-easy-31ac {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.dropdown_1a15 {
    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;
}

.sort-old-481e {
    flex: 1;
}

.logo_advanced_e581 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.out_860e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.copper_689a {
    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;
}

.pink-d102 {
    flex: 1;
}

.hard-0a01 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.active_wood_eed5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.block-4383 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.avatar-56f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.menu-middle-71dc {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.menu-middle-71dc .banner_ea85 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo_easy_3fd2 {
    margin-top: 2rem;
}

.logo_easy_3fd2 .panel-04a7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.current-52dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-east-c2f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content-east-c2f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-east-c2f1 .gallery_glass_fa8d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down_da41 {
    margin: 2rem 0;
}

.overlay-cold-8845 {
    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 */
.static-1c36 {
    padding: var(--section-padding);
}

.carousel-8007 {
    margin-top: 1rem;
}

.easy-39b0 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.easy-39b0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.easy-39b0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.orange_3300 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-a7ec {
    margin: 2rem 0;
}

.copper-0ac1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.shadow_59b4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.search_pressed_2d35 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.last_5b03 {
    margin: 2rem 0;
}

.hover-yellow-5591 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hover-yellow-5591 .yellow_d0b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item_over_7a8e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .item_over_7a8e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notice-80d8 {
    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);
}

.badge-44bb {
    color: var(--text-white);
    font-weight: 600;
}

.lower-573a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.first_721a {
    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);
}

.first_721a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.shade-tiny-91a2 {
    padding: var(--section-padding);
}

.large-280f {
    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;
}

.large-280f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.row_warm_9240 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row_warm_9240 .huge_2d35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row_warm_9240 .silver_9786 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hidden_lite_9e32 {
    flex: 1;
}

.steel_aea5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.alert-bd57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-bd57 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.alert-bd57 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.border_b880 {
    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);
}

.border_b880 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border_b880 strong {
    color: var(--warning-color);
}

/* Slots Section */
.box_e6b8 {
    padding: var(--section-padding);
}

.summary_bfbc {
    margin: 2rem 0;
}

/* Table Games Section */
.pagination-rough-9249 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-f482 {
    margin: 2rem 0;
}

.secondary_eea4 {
    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);
}

.secondary_eea4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary_eea4 .gold-c71a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_eea4 .image_silver_ab56 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.surface-warm-2a17 {
    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);
}

.surface-warm-2a17 .content-8171 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.stale_54b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-187d {
    margin: 2rem 0;
}

.menu-e1a4 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-right-3925 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_6079 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-9b76 {
    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);
}

.summary-9b76:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.summary-9b76.fn-active-6ee3 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in_7427 {
    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);
}

.accent-selected-3fd7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent-selected-3fd7 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.surface_0631 {
    padding: var(--section-padding);
}

.main_motion_5208 {
    margin: 2rem 0;
}

.narrow_5f98 {
    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);
}

.narrow_5f98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .narrow_5f98 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.paragraph-medium-482e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.badge-iron-b57b {
    flex: 1;
}

.outer_b6e5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-stale-3b82 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notice-dd7c {
    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;
}

.text_d4a5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.yellow_bf09 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mini_75e2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb_16cf {
    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;
}

.breadcrumb_16cf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.video-full-ecf0 {
    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);
}

.hover-4689 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hover-4689 strong {
    color: var(--accent-color);
}

/* New Games Section */
.message_blue_fcec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-large-37a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .link-large-37a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-large-37a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_926a {
    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;
}

.fluid_926a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.layout-pressed-a54d {
    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;
}

.hot-bc4f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.mini-516c {
    font-size: 2rem;
}

.green-3ac1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tabs_c71e {
    flex: 1;
}

.title-stone-ce60 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.current_500f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.block-prev-fc29 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout_0197 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.medium_2e23 {
    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;
}

.upper-590e {
    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;
}

.upper-590e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.list_3c23 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_south_736f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-05b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hard-05b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north_876e {
    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);
}

.disabled_lower_3b5b {
    color: var(--text-white);
    font-weight: 600;
}

.card-huge-8691 {
    color: var(--accent-color);
    font-weight: 600;
}

.element-medium-08a6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.element-medium-08a6 strong {
    color: var(--accent-color);
}

/* Security Section */
.item_4e39 {
    padding: var(--section-padding);
}

/* Benefits Section */
.popup_f12d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.image-fresh-d145 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.logo_0518 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_bright_4e6b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.notice_90c7 {
    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) {
    .notice_90c7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.notice_90c7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notice_90c7 .copper_689a {
    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;
}

.notice_90c7 .pink-d102 {
    flex: 1;
}

.notice_90c7 .hard-0a01 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notice_90c7 .active_wood_eed5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.bronze-fdc3 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-fdc3 .stale_c6b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bronze-fdc3 .next_229d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze-fdc3 .next_229d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bronze-fdc3 .next_229d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.video-soft-57da {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.light-8a19 {
    padding: var(--section-padding);
}

.preview-bf30 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .preview-bf30 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail-huge-27f7 {
    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);
}

.thumbnail-huge-27f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.thumbnail-huge-27f7 .hero_6a7b {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-huge-27f7 .notice_2768 {
    flex: 1;
}

.thumbnail-huge-27f7 .gradient-green-6675 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail-huge-27f7 .disabled-full-4e6c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-d6b5 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-d6b5 .border_d914 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-d6b5 .filter_5028 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.slider-d6b5 .filter_5028 li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-d6b5 .filter_5028 li:last-child {
    border-bottom: none;
}

.slider-d6b5 .filter_5028 li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.slider-d6b5 .filter_5028 li strong {
    color: var(--text-white);
}

.alert_cold_88d3 {
    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);
}

.alert_cold_88d3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert_cold_88d3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.mask_28b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up_5684 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .up_5684 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-small-06f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.caption-small-06f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.in_fccc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.iron-02b0 {
    font-size: 2rem;
}

.avatar-dbd9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.next-f728 {
    flex: 1;
}

.row-388f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-388f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.row-388f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.paragraph_8235 {
    margin-top: 3rem;
}

.list-white-2d8e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.medium-99aa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-gold-8f8f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-gold-8f8f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.overlay-gold-8f8f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.overlay-gold-8f8f li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.primary_blue_3cca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-5ae5 {
    margin: 2rem 0;
}

.last-88bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.last-88bf .yellow_d0b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.silver_180c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .silver_180c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary-paper-f6cf {
    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);
}

.tertiary-paper-f6cf:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.detail_gas_cf30 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.container-eab9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.mini-39f6 {
    padding: var(--section-padding);
}

.element_0819 {
    margin: 2rem 0;
}

.hidden_dc51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hidden_dc51 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_dc51 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_gas_76ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main_gas_76ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion_gold_70bc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header_379a {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.main_9443 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.main_9443.input_top_fafc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.photo_f191 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.huge_fc44 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.overlay_slow_51fe {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-basic-97b6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input_cool_e61d {
    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);
}

.input_cool_e61d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input_cool_e61d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.disabled-fresh-a5dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_8ff2 {
    margin: 2rem 0;
}

.slow-c78f {
    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) {
    .slow-c78f {
        flex-direction: column;
        gap: 1rem;
    }
}

.slow-c78f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slow-c78f::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);
}

.outline_b085 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.selected-1413 {
    flex: 1;
}

.summary_outer_ed8d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-first-5061 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-first-5061 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.brown_dcdd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_clean_28d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-a73e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card-a73e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-over-d162 {
    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);
}

.item-7aca {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-1791 {
    flex: 1;
}

.left_0b25 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-0e82 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message_brown_5490 {
    margin-top: 2rem;
    text-align: center;
}

.steel_bf3a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel_bf3a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.complex-0369 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-0369 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-91e7 {
    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);
}

.alert-91e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert-91e7 .logo_ddf0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-91e7 .image-liquid-366f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.alert-91e7 .feature-advanced-c966 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.alert-91e7 .footer-inner-a0a7 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.full-1f99 {
    padding: var(--section-padding);
}

.simple_d8af .description-da30 {
    flex: 1;
}

/* Promo Calendar Section */
.list_brown_fa2b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-5949 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-5949 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-full-26ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-8444 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.copper_b3f7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info_rough_47f2 {
    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);
}

.message_over_84fd {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.detail-wood-bb29 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.box-8b3f {
    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);
}

.box-8b3f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box-8b3f strong {
    color: var(--accent-color);
}

/* Requirements Section */
.alert_motion_2b72 {
    padding: var(--section-padding);
}

.preview-thick-2f64 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview-thick-2f64 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture-4d98 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-b09f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty_0dae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_0dae li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.box_hard_bdbf {
    margin-top: 3rem;
}

.box_hard_bdbf .list-white-2d8e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.box_hard_bdbf .medium-99aa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box_hard_bdbf .overlay-gold-8f8f {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.box_hard_bdbf .overlay-gold-8f8f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.box_hard_bdbf .overlay-gold-8f8f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.box_hard_bdbf .overlay-gold-8f8f li strong {
    color: var(--warning-color);
}

.modal_e117 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_e117 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.cool-28dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-middle-d89b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-middle-d89b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-da2b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-da2b .yellow_d0b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.mask_3ff5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solid-02b4 {
    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);
}

.solid-02b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pro-6df5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-495a {
    flex: 1;
}

.search-5e00 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.glass-b944 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.card-east-ccc1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.message-e615 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hover_1ee6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .hover_1ee6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-upper-3ae0 {
    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);
}

.sort-upper-3ae0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-soft-3377 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_2663 {
    color: var(--text-gray);
    font-size: 1rem;
}

.mask_052c {
    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);
}

.gradient_fast_7fa3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gradient_fast_7fa3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.icon_21c3 { 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; }
.panel_cc39, .gas-283e { max-width:100%; height:auto; }

.tertiary-inner-ed4f, .plasma_bba7, .detail-fa52 { white-space:normal; }

.video-fb4f,
.texture_c45c,
.shade-aa3d,
.complex-0369,
.shadow_gold_3b10,
.basic-b078 {
  flex-wrap:wrap;
}

[class*="grid"],
.hover_1ee6,
.hidden_dc51,
.box_699d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.chip-9ede img,
.texture_c45c img,
.tall_8c06 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.filter-93df, .feature_c854,
.in-ac7a, .warm_573c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.column-inner-d0cf { width:100%; overflow-x:auto; }
.column-inner-d0cf table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.static-86c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .static-86c7 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.tag-ebf0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.complex_308b,
.image-south-fa96,
.description_d8e2,
.logo-old-1e66,
.notification_7651,
.hover_1ee6,
.hidden_dc51,
.box_699d,
.gold-222e,
.main_motion_5208,
.static-86c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .complex_308b,
  .image-south-fa96,
  .description_d8e2,
  .logo-old-1e66,
  .notification_7651,
  .hover_1ee6,
  .hidden_dc51,
  .box_699d,
  .gold-222e,
  .main_motion_5208,
  .static-86c7 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.alert_gold_1455,
.feature_0b8c,
.sort-upper-3ae0,
.status_cool_2146,
.main_gas_76ab,
.pink_7db5,
.narrow_5f98,
.tag-ebf0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hero-6da3,
.left-f1e8,
.south-d8a3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-6da3 > *,
.left-f1e8 > *,
.south-d8a3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 2cfc */
.promo-block-y7 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
