/* {$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;
}

.main-bronze-f68a {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.complex_a8d8 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .complex_a8d8 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .complex_a8d8 {
        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 */
.badge_fe57 {
    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);
}

.modal-brown-99ed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .modal-brown-99ed {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .copper-c6b6 {
        grid-column: 1;
    }
    
    .iron-5e89 {
        grid-column: 2;
    }
    
    .overlay-left-52cf {
        grid-column: 3;
    }
}

.copper-c6b6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.copper-c6b6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.block-advanced-b403 {
    display: none;
}

@media (min-width: 1024px) {
    .block-advanced-b403 {
        display: block;
    }
}

/* Grouped Navigation */
.detail-cf00 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.pro-398b {
    position: relative;
}

.paragraph_4978 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.pro-398b .carousel_b27d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.carousel_b27d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.selected_0d63 {
    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;
}

.selected_0d63:hover,
.selected_0d63.fn-active-602c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.sort-0f9b {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .sort-0f9b {
        display: flex;
    }
}

/* Mobile Register Button */
.iron-5e89 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .iron-5e89 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.grid-top-d9c3 {
    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;
}

.grid-top-d9c3::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 */
.overlay-left-52cf {
    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) {
    .overlay-left-52cf {
        display: none;
    }
}

.overlay-left-52cf span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.overlay-left-52cf.fn-active-602c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.overlay-left-52cf.fn-active-602c span:nth-child(2) {
    opacity: 0;
}

.overlay-left-52cf.fn-active-602c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.steel_9ec6 {
    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;
}

.steel_9ec6.fn-active-602c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.highlight-paper-1390 {
    overflow: hidden;
}

.sidebar_9616 {
    list-style: none;
    padding: 0.75rem 0;
}

.tabs-9ace {
    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;
}

.tabs-9ace:hover,
.tabs-9ace.fn-active-602c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tabs-9ace.gradient_8ca1 {
    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;
}

.tabs-9ace.gradient_8ca1::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 */
.video_8b53 {
    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;
}

.aside_cold_4070 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.aside_cold_4070:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.badge-e07e {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.badge-e07e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background-plasma-145d {
    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;
}

.background-plasma-145d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.upper-8545 {
    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;
}

.wide_51f3 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.wide_51f3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hover-purple-19b8 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hover-purple-19b8:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.wood_09d6 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.wood_09d6: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);
}

.footer_f9ed {
    font-size: 1em;
    font-weight: 700;
}

.mask-wood-4491 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.section-light-a030 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.section-light-a030::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;
}

.last-1844 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .last-1844 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.breadcrumb-0a41 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.footer-c92a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.block-032f {
    margin-bottom: 2rem;
}

.overlay_west_ed96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .overlay_west_ed96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-7a26 {
    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);
}

.left-76cf {
    font-size: 1.5rem;
}

.media_2675 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.element_pressed_3fa4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter_d91a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.filter_d91a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.brown_59e8 {
    text-align: center;
    margin-bottom: 3rem;
}

.pattern-45e2 {
    margin-bottom: 1rem;
}

.clean_86ea {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.shadow-99c8 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .shadow-99c8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .shadow-99c8.logo-fresh-d6ab {
        direction: rtl;
    }
    
    .shadow-99c8.logo-fresh-d6ab > * {
        direction: ltr;
    }
}

.silver-975c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.silver-975c:first-child {
    margin-top: 0;
}

.tag_23f2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.paragraph_yellow_b6ee {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.paragraph_yellow_b6ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.motion_e62d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_e62d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_cool_ccfd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fast-f5b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.caption_fresh_e4b4 {
    list-style: none;
}

.caption_fresh_e4b4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption_fresh_e4b4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.video_silver_6b7d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.dynamic-a73d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.button_hard_95a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.focus-3e78 {
    margin: 2rem 0;
}

.white_b900 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.tall_de14 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.status_edd0 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.carousel_8afe {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.rough-99ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough-99ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-9796 {
    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);
}

.sidebar-9796:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.link_0ba6 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.frame_e7b4 {
    font-size: 1.5rem;
}

.text-gas-80e6 {
    color: var(--accent-color);
    margin: 0;
}

.status_277e {
    list-style: none;
}

.status_277e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.status_277e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.sort-glass-5dac {
    margin: 2rem 0;
}

.panel-bright-acc5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-bottom-2409 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .highlight-bottom-2409 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_solid_eaf7 {
    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);
}

.glass-962c {
    font-size: 1.25rem;
}

.disabled_233c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.nav-d2be,
.frame_e7d7 {
    text-align: center;
    margin: 2rem 0;
}

.focused_5c6e,
.module-935c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.search-focused-d881 {
    margin: 2rem 0;
    text-align: center;
}

.description-white-2ff8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.description-white-2ff8::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;
}

.simple-e24b {
    position: relative;
    z-index: 1;
}

.top_af0c {
    margin-bottom: 1rem;
}

.texture-simple-a099 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge-c464 {
    margin-bottom: 3rem;
}

.breadcrumb_gas_d8de {
    margin-top: 3rem;
}

.feature_cdf3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature_cdf3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_cdf3 .dropdown-7a26 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.north_dba3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.primary_glass_2a61 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.nav_84e5 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.current_fc1b {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .current_fc1b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .current_fc1b {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.mini_0381 {
    margin-bottom: 1rem;
}

.tooltip-d978 img {
    margin-bottom: 1rem;
}

.mini_6ad2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_thick_6670 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hard_90ef {
    list-style: none;
}

.hard_90ef li {
    margin-bottom: 0.5rem;
}

.hard_90ef a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hard_90ef a:hover {
    color: var(--accent-color);
}

.pink-d66e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.focused_a164 {
    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);
}

.focused_a164:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.element_2c4a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.element_2c4a p {
    margin-bottom: 0.25rem;
}

.widget-176c {
    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) {
    .widget-176c {
        flex-direction: row;
    }
}

.tabs-b9d4 {
    text-align: center;
}

@media (min-width: 768px) {
    .tabs-b9d4 {
        text-align: left;
    }
}

.tabs-b9d4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wood-bee0 {
    font-size: 0.75rem !important;
}

.component-9f5d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.upper-e17b {
    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);
    }
}

.current-ab63 {
    animation: fadeInUp 0.6s ease-out;
}

.cool-d7be {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.gallery-blue-7603 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-blue-7603 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.selected-c033 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected-c033 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static-2093 {
    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);
}

.static-2093 .button_hard_95a4 {
    font-size: 1.25rem;
}

.static-2093 .thumbnail-8b65 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.badge-pink-e9f8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge-pink-e9f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_7def {
    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);
}

.element_7def:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main_9587 {
    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);
}

.east-cfc3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blue_ca27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-current-f7e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_b514 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_b514 .badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop_b514 .notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_black_0a86 {
    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);
}

.link_e856 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.link_e856 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.link_e856 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.component-easy-df6f {
    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);
}

.hidden-stale-f42d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-ca83 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image-ca83 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image-ca83 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);
}

.image-ca83 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.image-ca83 input::placeholder {
    color: var(--text-muted);
}

.status_7d88 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.left_a455 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.left_a455 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.menu_9ba6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.menu_9ba6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.highlight-bottom-2409 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-bottom-2409 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_solid_eaf7 {
    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);
}

.content_solid_eaf7 .glass-962c {
    font-size: 1.25rem;
}

.content_solid_eaf7 .disabled_233c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.accent_15ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_711b {
    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);
}

.lite_711b .button_hard_95a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite_711b .badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite_711b .notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_dynamic_652e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-red-3f39 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar-red-3f39 .menu-37c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-red-3f39 .top-8a77 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-143d {
    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);
}

.wrapper_109c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_109c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_west_57dc {
    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);
}

.breadcrumb_west_57dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow_3827 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dirty_66d8 {
    flex: 1;
}

.dim-0141 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tertiary-cool-d763 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accent-right-52d6 {
    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);
}

.accent-right-52d6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.table_narrow_80ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_narrow_80ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_7b60 {
    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);
}

.mask_7b60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-4cf3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-6b6b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver_41fc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pattern-edc2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.section_bright_eb5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-north-8631 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-fb7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-fb7a .label_71f5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-fb7a .light_c136 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_9b6b {
    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-ab7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-c2eb {
    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);
}

.outline-c2eb .button_hard_95a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-c2eb .badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-c2eb .notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_0243 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple_0243 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_in_3ed2 {
    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);
}

.gallery_in_3ed2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.solid_0931 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid_0931 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite_6844 {
    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);
}

.lite_6844:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard-729d {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed-4c7b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tall_de14 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.dropdown-4f15 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notification-motion-a0bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_ed25 {
    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);
}

.frame_ed25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_blue_688c {
    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);
}

.narrow_afd4 {
    flex: 1;
}

.primary_purple_4e78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.static_ec29 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.complex_84ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-fe04 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_65b3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_65b3 .menu-37c8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.stone_65b3 .top-8a77 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_e7d7 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-d68b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-d68b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.list-0dd1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-0dd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_cd5b {
    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);
}

.pro_cd5b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-small-af13 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-cc62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column-black-8bd3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.avatar-fixed-c128 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort_712d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_under_d832 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_8c93 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-advanced-5e22 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_0e7b {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-ab7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-c2eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline-c2eb .badge_prev_859f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline-c2eb .notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_8e9e {
    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);
}

.top_a8bb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .top_a8bb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top_a8bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_9335 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.next_9335:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark_9d4c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic-d11e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.south_2c50 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.fixed_700b {
    padding: 1.5rem;
}

.content_small_142b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link_bright_e5f6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link_bright_e5f6 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;
}

.link_bright_e5f6 li:last-child {
    border-bottom: none;
}

.link_bright_e5f6 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.sort-d618 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-d618 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_prev_211a {
    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);
}

.slider_prev_211a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-3bc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone_8ee4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer_action_b46c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.new_b9d3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal-in-4649 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.orange_9387 {
    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);
}

.content-fresh-f514 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-gas-17f6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold_59ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.new_7f28 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.media_prev_0aac {
    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);
}

.grid_e884 {
    text-align: center;
}

.slider_c448 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hidden-full-829f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-static-8bf0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-static-8bf0 .badge_prev_859f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture-static-8bf0 .notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-b2ac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-b2ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-b2ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-485d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.white-485d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black-cf97 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dim_4b06 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge_prev_859f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bronze-ff1a {
    padding: 1.5rem;
}

.notification_0a49 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plasma_cacd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma_cacd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.plasma_cacd li:last-child {
    border-bottom: none;
}

.plasma_cacd li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.backdrop-e442 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.black_c8db {
    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);
}

.black_c8db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-595d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-9b9e {
    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);
}

.main_9587 {
    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;
}

.east-cfc3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue_ca27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_smooth_afe1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-light-ad90 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-slow-c104 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_smooth_1153 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.middle_7cc4 {
    display: flex;
    gap: 1rem;
}

.middle_7cc4 .focused_283c {
    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;
}

.wrapper_df83 {
    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);
}

.mask_bright_e426 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pattern_b47d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_b47d 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;
}

.pattern_b47d li:last-child {
    border-bottom: none;
}

.pattern_b47d li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.active_basic_39c5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_basic_39c5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_basic_39c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_c3bc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.west_c3bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold_3353 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-7f6a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.label_71f5 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.widget-east-75ae {
    font-size: 1rem;
}

.text-1bf6 {
    padding: 1.5rem;
}

.light_c136 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.complex_f54a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.complex_f54a .grid_e884 {
    text-align: center;
}

.complex_f54a .sort-plasma-4f4b {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.complex_f54a .container-0365 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tooltip-up-fdf8 {
    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);
}

.tooltip-up-fdf8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.current-175f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-175f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_d108 {
    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);
}

.hover_d108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-9b13 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_58df {
    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);
}

.tertiary_8bff {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-a824 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_05c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.south-41e7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.message_b727 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-f204 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search_advanced_35e4 {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search_advanced_35e4.full-73d3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.search_advanced_35e4.gallery_static_b416 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.search_advanced_35e4.logo-fixed-61f8 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.search_advanced_35e4.hidden_middle_6470 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.search_advanced_35e4.preview-gold-f025 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.feature-purple-7be2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_gold_28fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-full-e87d {
    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);
}

.simple-b004 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.main_dynamic_652e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_dynamic_652e 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;
}

.main_dynamic_652e li:last-child {
    border-bottom: none;
}

.main_dynamic_652e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.texture_pink_973a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture_pink_973a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_pink_973a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-outer-7c78 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.popup-outer-7c78:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-outer-7c78.plasma-fb5f {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .popup-outer-7c78.plasma-fb5f {
        grid-column: span 3;
    }
}

.button-under-021c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.popup-outer-7c78.plasma-fb5f .button-under-021c {
    background: rgba(6, 182, 212, 0.1);
}

.background-simple-52f0 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.action-bc03 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.popup-outer-7c78.plasma-fb5f .action-bc03 {
    color: var(--info-color);
}

.detail_9a4b {
    padding: 1.5rem;
    text-align: center;
}

.block-e194 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.popup-outer-7c78.plasma-fb5f .block-e194 {
    color: var(--info-color);
}

.info_77f6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.nav_8c19 {
    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 */
.media-action-c588 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-action-c588 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_889d {
    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);
}

.full_889d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-up-9bfc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_711b {
    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);
}

.glass-962c {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-34b8 {
    flex: 1;
}

.panel-bright-acc5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma-12d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-full-6769 {
    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);
}

.column_full_5506 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wide_d7e9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.upper-e17b {
    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);
}

.current-412a {
  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);
}

.current-412a .grid_e884 {
    text-align: center;
}

.current-412a .slider_c448 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.current-412a .sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_pressed_67cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_d778 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-b2fb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_liquid_1813 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-gold-5533 {
    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);
}

.green-2c20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slider_b051 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-pressed-992f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-pressed-992f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-pressed-992f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_bronze_9551 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link_bronze_9551:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black-f2e2 {
    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);
}

.nav_center_e5f1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sort-22e9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cold_a32a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cold_a32a.logo_dark_f9f1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.cold_a32a.hidden-46a1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.cold_a32a.thumbnail-active-8af2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.rough-4726 {
    padding: 1.5rem;
    text-align: center;
}

.dropdown_136d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.button_copper_6e8b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.button_copper_6e8b .paragraph_old_5eb6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.lower-08e7 {
    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);
}

.lower-08e7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo_static_a74d {
  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);
}

.glass-f9aa {
    text-align: center;
}

.glass-f9aa .slider_c448 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.glass-f9aa .sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.simple_6e2a { text-align: center; }
.container_0201 { text-align: left; }
.link_090c { text-align: right; }

.pink_c218 { margin-bottom: 0; }
.feature-a629 { margin-bottom: 0.5rem; }
.sidebar-down-6365 { margin-bottom: 1rem; }
.menu-small-7fb5 { margin-bottom: 1.5rem; }
.filter-medium-16ef { margin-bottom: 2rem; }

.row_c633 { margin-top: 0; }
.breadcrumb-cool-08f1 { margin-top: 0.5rem; }
.tabs_paper_2147 { margin-top: 1rem; }
.aside-275b { margin-top: 1.5rem; }
.west_3eea { margin-top: 2rem; }

.fn-hidden-602c { display: none; }
.fn-visible-602c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .section-light-a030 {
        padding: 6rem 0 3rem;
    }
    
    .last-1844 {
        text-align: center;
    }
    
    .shadow-99c8 {
        text-align: center;
    }
    
    .overlay_west_ed96 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .badge_fe57,
    .steel_9ec6,
    .description-white-2ff8,
    .nav_84e5 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-light-a030 {
        background: none;
    }
}

/* Providers Section */
.filter-hard-11be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-e0a1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-e0a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-e0a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-simple-d26c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-simple-d26c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.north_da74 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content_lite_3511 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fluid_aad0 {
    list-style: none;
    padding: 0;
}

.fluid_aad0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.fluid_aad0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.slow_0f31 {
    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);
}

.slow_0f31 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.label_wood_46d9 {
    padding: var(--section-padding);
}

.tooltip_e081 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_e081 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-steel-e5ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature-steel-e5ae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.rough_ccf4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.detail-06be {
    display: flex;
    flex-direction: column;
}

.nav-402a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.button_thick_5f0b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.avatar_bce1 {
    color: var(--accent-color);
}

.info_a2d3 {
    font-size: 1.25rem;
}

.glass-4af8 {
    margin-bottom: 1rem;
}

.glass-4af8 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.easy-85be {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cool-6a95 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.grid_e884 {
    text-align: center;
}

.slider_c448 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.menu_upper_d21f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview-hard-1c79 {
    margin: 2rem 0;
}

.fresh_d7f9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.fresh_d7f9 .button_hard_95a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_d424 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.detail-3091 {
    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;
}

.detail-3091:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-narrow-6b9d {
    font-size: 2rem;
}

.new-05f6 {
    display: flex;
    flex-direction: column;
}

.info_e98c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.breadcrumb-b602 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.lower_d652 {
    padding: var(--section-padding);
}

.menu-a715 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu-a715 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-a715 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-16bd {
    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);
}

.east-16bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.east-16bd .slider_c448 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.east-16bd .sort-plasma-4f4b {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.east-16bd .accent_958f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.disabled-a1d6 {
    margin-top: 4rem;
}

.content-fluid-3333 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.hidden-under-5bb7 {
    overflow-x: auto;
}

.accent_fadc {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accent_fadc thead {
    background: var(--accent-color);
}

.accent_fadc th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.accent_fadc td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_fadc tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.accent_fadc tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.photo-0642 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-e8e2 {
    max-width: 900px;
    margin: 0 auto;
}

.card_5b77 {
    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);
}

.card_5b77:hover {
    border-color: var(--accent-color);
}

.preview-rough-614f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.preview-rough-614f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.label_hard_d294 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.card_5b77.fn-active-602c .label_hard_d294 {
    transform: rotate(45deg);
}

.header_over_7ccd {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.card_5b77.fn-active-602c .header_over_7ccd {
    max-height: 1000px;
}

.header_over_7ccd p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.button-huge-ccf3 {
    padding: var(--section-padding);
}

.link_e856 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.card_a411 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_2970 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_2970 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge_9136 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-123c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.steel-4667 {
    font-size: 2rem;
}

.huge-5837 {
    color: var(--text-white);
    margin: 0;
}

.liquid_27d7 {
    list-style: none;
    padding: 0;
}

.liquid_27d7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid_27d7 li:last-child {
    border-bottom: none;
}

.pattern_narrow_5434 {
    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);
}

.pattern_narrow_5434 p {
    color: var(--success-color);
    margin: 0;
}

.accordion_82f8 {
    margin-top: 3rem;
}

.mask_bright_e426 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tiny-26ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tiny-26ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_dim_b54a {
    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);
}

.tertiary-advanced-691d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav_dim_b54a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.liquid-750c {
    padding: var(--section-padding);
}

.aside_c0b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_c0b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-mini-a3ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.modal-mini-a3ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bottom_a975 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.picture_hard_ee96 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wide_f61f {
    flex: 1;
}

.card-9329 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.badge_purple_802c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.surface_north_e578 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-53fe {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-53fe:last-child {
    border-bottom: none;
}

/* Comparison Section */
.dropdown_hovered_d220 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.shadow_paper_ca6a {
    padding: var(--section-padding);
}

.detail_b7d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.message-medium-e441 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-medium-e441 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_b6a4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white-a4c1, .action-81e4, .tooltip-8aad {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tooltip-8aad {
    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 */
.column-plasma-baa1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_92be {
    margin: 2rem 0;
}

.panel-c341 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_43aa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery-in-f9e6 {
    list-style: none;
    padding: 0;
}

.gallery-in-f9e6 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;
}

.gallery-in-f9e6 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gallery-in-f9e6 li:last-child {
    border-bottom: none;
}

.summary_f0a4 {
    text-align: center;
    margin-top: 2rem;
}

.gallery-steel-5203 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.sort-copper-dead {
    padding: var(--section-padding);
}

.popup_red_396e {
    margin: 2rem 0;
}

.brown-905e {
    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) {
    .brown-905e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.brown-905e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.up-9487 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.filter_lower_0cc4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.notice-hot-0795 {
    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;
}

.texture_liquid_6955 {
    flex: 1;
}

.button_dirty_092e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.card-copper-6520 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight-e6ca {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.item_middle_a8bb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .item_middle_a8bb {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.box-9e67 {
    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);
}

.box-9e67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box-9e67 .slider_c448 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-9e67 .sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 1rem;
}

.large_95db {
    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);
}

.widget-249e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.widget-249e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.wrapper_a1ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .wrapper_a1ab {
        grid-template-columns: 1fr 1fr;
    }
}

.fast_d475 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-b4c1 {
    margin-bottom: 1.5rem;
}

.pagination-b4c1 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pagination-b4c1 input,
.pagination-b4c1 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-b4c1 input:focus,
.pagination-b4c1 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.next_69ec {
    width: 100%;
    margin-top: 1rem;
}

.static_b50d {
    display: flex;
    align-items: center;
}

.white_00a0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.badge-out-ac70 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.upper-e23c {
    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;
}

.over-0bc4 {
    color: var(--text-gray);
}

.info-b26e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.summary_stale_9ede {
    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);
}

.summary_stale_9ede p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.logo_0a72 {
    margin-top: 3rem;
}

.feature_new_2df2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.detail-dynamic-6e57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty_f684 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.article_0ffd {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article_0ffd:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.overlay_hovered_21b0 {
    padding: var(--section-padding);
}

.iron_7957 {
    margin: 2rem 0;
}

.stone-731f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.caption_a39d {
    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;
}

.caption_a39d:hover, .caption_a39d.fn-active-602c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.block_current_42bd {
    display: none;
}

.block_current_42bd.fn-active-602c {
    display: block;
}

.paragraph_out_b043 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth-604a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout-down-8941 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.layout-down-8941 ul {
    list-style: none;
    padding: 0;
}

.layout-down-8941 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.layout-down-8941 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active-cool-6b19 {
    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 */
.rough-25e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_7cf9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-2004 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-rough-b2f7 {
    color: var(--accent-color);
    margin: 0;
}

.focused_cf21 {
    display: flex;
    gap: 1.5rem;
}

.avatar_motion_70c9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu_cool_7755 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.form_hovered_54bb {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.form_hovered_54bb.highlight-7707 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form_hovered_54bb.module_397a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.form_hovered_54bb.accordion-east-14d9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.prev-558e {
    margin-top: 2rem;
}

.paragraph_lite_b3f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.active-wood-10d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .active-wood-10d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused_c4ac {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.selected-7dad {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shadow_cold_b963 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.module_4965 {
    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 */
.table-glass-f736 {
    padding: var(--section-padding);
}

.section-dim-b5a3 {
    margin: 2rem 0;
}

.white_a5b7 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.breadcrumb_narrow_2ba4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.accordion-3615 {
    list-style: none;
    padding: 0;
}

.accordion-3615 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;
}

.accordion-3615 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.accordion-3615 li:last-child {
    border-bottom: none;
}

.fixed_ab22 {
    margin: 2rem 0;
}

.hard-43d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message_b0cc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message_b0cc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status_dynamic_c7ec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_ae73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current-10fa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay_gas_24ed {
    margin-top: 2rem;
}

.dim-0141 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tertiary-6baa {
    list-style: none;
    padding: 0;
}

.disabled-prev-c636 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.disabled-prev-c636 a {
    color: var(--accent-color);
    text-decoration: none;
}

.disabled-prev-c636 a:hover {
    text-decoration: underline;
}

.panel-67e5 {
    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 */
.background_full_be23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-iron-5409 {
    margin: 2rem 0;
}

.row-051e {
    margin-bottom: 3rem;
}

.row-051e .column_43aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.fixed-c165 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.primary_medium_64ad {
    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);
}

.primary_medium_64ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.widget-c0cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .widget-c0cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-f96c {
    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 */
.module_focused_dbe7 {
    padding: var(--section-padding);
}

.focus-513b {
    margin: 2rem 0;
}

.top-528a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup-under-7401 {
    overflow-x: auto;
    margin: 2rem 0;
}

.card_glass_5d44 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.short_fbb8 {
    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;
}

.simple-8470 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.widget_db11 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .widget_db11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-00f4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-00f4 .button_hard_95a4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.primary-00f4 .badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-da66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.overlay_8326 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper_9e30 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_9e30 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_3aab {
    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;
}

.pressed_3aab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.wood-5ee4 {
    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);
}

.dynamic-7f78 {
    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;
}

.secondary-7687 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pagination_inner_446f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.aside_narrow_f6b1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-hot-04b5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message_bright_850b {
    color: var(--text-white);
    font-weight: 600;
}

.notice_8979 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-glass-4520 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-glass-4520 .focused_283c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.simple-35cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-35cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_5bb6 {
    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);
}

.box_5bb6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_5bb6 .slider_c448 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_5bb6 .sort-plasma-4f4b {
    color: var(--text-gray);
    font-size: 1rem;
}

.orange-c981 {
    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);
}

.middle_d182 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.middle_d182 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.sort_712d {
    margin: 2rem 0;
}

.form_under_d832 {
    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);
}

.form_under_d832:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.secondary_8c93 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main-pink-967a {
    flex: 1;
}

.search-advanced-5e22 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_0e7b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.pressed-ab7b {
    margin: 2rem 0;
}

.outline-c2eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-c2eb .badge_prev_859f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outline-c2eb .notification_0a49 {
    color: var(--text-gray);
    margin: 0;
}

.secondary_8e9e {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.secondary_8e9e .focused_5c6e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.modal-da66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.modal_blue_688c {
    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;
}

.narrow_afd4 {
    flex: 1;
}

.static_ec29 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.complex_84ef {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.main_9587 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active_wide_22a6 {
    flex: 1;
}

.east-cfc3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.blue_ca27 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.alert-slow-c104 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.description_smooth_1153 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.middle_7cc4 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.middle_7cc4 .focused_283c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper_df83 {
    margin-top: 2rem;
}

.wrapper_df83 .mask_bright_e426 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.basic_2d4e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_prev_0aac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .media_prev_0aac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_prev_0aac .grid_e884 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-full-829f {
    margin: 2rem 0;
}

.picture-static-8bf0 {
    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 */
.widget_middle_f9d8 {
    padding: var(--section-padding);
}

.bronze-ff1a {
    margin-top: 1rem;
}

.plasma_cacd {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.plasma_cacd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.plasma_cacd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.aside_under_9ca3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-65f9 {
    margin: 2rem 0;
}

.list_in_54bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.alert_under_b5fb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-smooth-f8a1 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.button-dim-92dd {
    margin: 2rem 0;
}

.disabled_mini_390c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.disabled_mini_390c .column_43aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text-small-91d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .text-small-91d6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.steel-0303 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-steel-6bb2 {
    color: var(--text-white);
    font-weight: 600;
}

.footer-4405 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.item-west-6379 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.item-west-6379 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.sidebar_short_d63c {
    padding: var(--section-padding);
}

.slider-2dd3 {
    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;
}

.slider-2dd3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.texture-797f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.texture-797f .tertiary-advanced-691d {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture-797f .container_fc83 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.modal_0139 {
    flex: 1;
}

.section_512c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.box_0ae0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box_0ae0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.box_0ae0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pressed_0d6d {
    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);
}

.pressed_0d6d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pressed_0d6d strong {
    color: var(--warning-color);
}

/* Slots Section */
.text-f45b {
    padding: var(--section-padding);
}

.section_bright_eb5c {
    margin: 2rem 0;
}

/* Table Games Section */
.active_0c0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-north-8631 {
    margin: 2rem 0;
}

.wrapper-fb7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-fb7a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper-fb7a .label_71f5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-fb7a .light_c136 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.dark_9b6b {
    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);
}

.dark_9b6b .focused_5c6e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hidden-first-67a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh_5912 {
    margin: 2rem 0;
}

.chip-current-c791 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-dd5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_simple_2f00 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dirty_e8b8 {
    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);
}

.dirty_e8b8:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.dirty_e8b8.fn-active-602c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-out-8f28 {
    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);
}

.row_north_ab94 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row_north_ab94 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.layout-eaec {
    padding: var(--section-padding);
}

.outline_282c {
    margin: 2rem 0;
}

.footer-large-3584 {
    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);
}

.footer-large-3584:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .footer-large-3584 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sort-49ca {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.header-a013 {
    flex: 1;
}

.west-394d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-db16 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.smooth-3900 {
    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;
}

.stale_b788 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gold-8782 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.highlight-huge-10de {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box_thick_ed9f {
    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;
}

.box_thick_ed9f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accordion_9337 {
    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);
}

.widget-pink-88d8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-pink-88d8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.hero_0f17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_96bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slow_96bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slow_96bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_1ff7 {
    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;
}

.wrapper_1ff7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.motion_7ca4 {
    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;
}

.gallery-11eb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.under_4454 {
    font-size: 2rem;
}

.panel_last_a27d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.gas-e1a4 {
    flex: 1;
}

.primary_bright_5a32 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.paragraph-purple-6fce {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.grid_out_821f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav_red_01c0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card_42a6 {
    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;
}

.detail_slow_19ab {
    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;
}

.detail_slow_19ab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.center-64dd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_a431 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_cold_88b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .avatar_cold_88b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale-0af3 {
    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);
}

.last-ddc0 {
    color: var(--text-white);
    font-weight: 600;
}

.huge_744d {
    color: var(--accent-color);
    font-weight: 600;
}

.video_prev_613f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.video_prev_613f strong {
    color: var(--accent-color);
}

/* Security Section */
.highlight-glass-f3c7 {
    padding: var(--section-padding);
}

/* Benefits Section */
.footer-over-2ba1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.progress_narrow_6a95 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.accordion_glass_21bc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold-4228 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.layout_black_b123 {
    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) {
    .layout_black_b123 {
        flex-direction: column;
        gap: 1rem;
    }
}

.layout_black_b123:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.layout_black_b123 .main_9587 {
    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;
}

.layout_black_b123 .active_wide_22a6 {
    flex: 1;
}

.layout_black_b123 .east-cfc3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.layout_black_b123 .blue_ca27 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.bright_a1a5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright_a1a5 .panel-bright-acc5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright_a1a5 .accent_15ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright_a1a5 .accent_15ea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bright_a1a5 .accent_15ea li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.fixed_ad50 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.chip-gas-a8b2 {
    padding: var(--section-padding);
}

.layout-over-508f {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .layout-over-508f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-d04d {
    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);
}

.shade-d04d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.shade-d04d .heading_fresh_3cc5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-d04d .message_orange_91bb {
    flex: 1;
}

.shade-d04d .menu-37c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade-d04d .notification_mini_4e5c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.plasma_1fcb {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_1fcb .hover-8ad5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_1fcb .message_d0a8 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.plasma_1fcb .message_d0a8 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);
}

.plasma_1fcb .message_d0a8 li:last-child {
    border-bottom: none;
}

.plasma_1fcb .message_d0a8 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;
}

.plasma_1fcb .message_d0a8 li strong {
    color: var(--text-white);
}

.pagination-under-9d74 {
    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);
}

.pagination-under-9d74 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pagination-under-9d74 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.text-c2c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_dark_52e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .status_dark_52e0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.new_2544 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new_2544:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav-orange-effd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag_warm_8a0a {
    font-size: 2rem;
}

.under_81a4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.chip_784e {
    flex: 1;
}

.content-hard-5bbe {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-hard-5bbe li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.content-hard-5bbe li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus-south-820f {
    margin-top: 3rem;
}

.white_a5b7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.breadcrumb_narrow_2ba4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion-3615 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-3615 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.accordion-3615 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.accordion-3615 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.purple_416e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new_fd6e {
    margin: 2rem 0;
}

.title_bright_f226 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.title_bright_f226 .column_43aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot-32b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hot-32b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-fixed-db11 {
    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);
}

.icon-fixed-db11:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.grid_inner_3d7c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.accordion-4e59 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.video_inner_b368 {
    padding: var(--section-padding);
}

.green_ff09 {
    margin: 2rem 0;
}

.fixed_cc78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .fixed_cc78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_cc78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-158c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.rough-158c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tertiary-tall-eaa6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.up_ee73 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.progress-10e1 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.progress-10e1.accent_3491 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.layout-3cff {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.banner-under-7cc0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.progress-dim-d8c2 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-20b9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary-8850 {
    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);
}

.summary-8850 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary-8850 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.link_700e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_87fc {
    margin: 2rem 0;
}

.tag_upper_2a45 {
    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) {
    .tag_upper_2a45 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tag_upper_2a45:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tag_upper_2a45::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);
}

.short_79d2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.main-00e8 {
    flex: 1;
}

.center-ae73 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.container_bottom_590b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container_bottom_590b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_de4c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-6a06 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_b008 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert_b008 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_d880 {
    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);
}

.card-pink-2a24 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge_wood_937a {
    flex: 1;
}

.tag_6191 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hard-fd7d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.medium_bdc2 {
    margin-top: 2rem;
    text-align: center;
}

.bronze-0cbe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bronze-0cbe strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.current-175f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-175f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_d108 {
    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);
}

.hover_d108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hover_d108 .module-3bc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_d108 .stone_8ee4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.hover_d108 .footer_action_b46c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.hover_d108 .new_b9d3 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.white_c8f7 {
    padding: var(--section-padding);
}

.hidden_58df .progress-bronze-6049 {
    flex: 1;
}

/* Promo Calendar Section */
.block_7447 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large_1256 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_1256 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-middle-d179 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_lite_268f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.heading-black-f3a1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-prev-411e {
    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);
}

.preview-c3a7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-wood-d492 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.header-huge-6031 {
    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);
}

.header-huge-6031 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-huge-6031 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.focus_brown_40c0 {
    padding: var(--section-padding);
}

.search-3be7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search-3be7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table_advanced_57b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-d709 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_7348 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption_7348 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth_9631 {
    margin-top: 3rem;
}

.smooth_9631 .white_a5b7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.smooth_9631 .breadcrumb_narrow_2ba4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth_9631 .accordion-3615 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.smooth_9631 .accordion-3615 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.smooth_9631 .accordion-3615 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.smooth_9631 .accordion-3615 li strong {
    color: var(--warning-color);
}

.yellow_f934 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow_f934 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.surface_f3bc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-tall-4cae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-tall-4cae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-white-3553 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-white-3553 .column_43aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.table-e212 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.texture_a178 {
    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);
}

.texture_a178:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.smooth_f590 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_liquid_c067 {
    flex: 1;
}

.background_dark_6428 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.list_5d82 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.main_hovered_a7b9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pagination-hot-cd65 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.complex-3769 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .complex-3769 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_cfdb {
    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);
}

.large_cfdb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip-south-d76b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-977e {
    color: var(--text-gray);
    font-size: 1rem;
}

.widget-249e {
    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);
}

.paper-1f44 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.paper-1f44 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.complex_a8d8 { 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; }
.filter_d91a, .paragraph_yellow_b6ee { max-width:100%; height:auto; }

.video_8b53, .background-plasma-145d, .upper-8545 { white-space:normal; }

.last-1844,
.shadow-99c8,
.media-action-c588,
.current-175f,
.pressed-ab7b,
.notice-pressed-992f {
  flex-wrap:wrap;
}

[class*="grid"],
.complex-3769,
.fixed_cc78,
.feature_cdf3 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.section-light-a030 img,
.shadow-99c8 img,
.element_pressed_3fa4 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.breadcrumb-0a41, .footer-c92a,
.pattern-45e2, .clean_86ea {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hidden-under-5bb7 { width:100%; overflow-x:auto; }
.hidden-under-5bb7 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.icon-e0a1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .icon-e0a1 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.focus-simple-d26c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.menu-a715,
.filter_copper_0403,
.accordion-middle-5ddc,
.accent-5517,
.item_middle_a8bb,
.complex-3769,
.fixed_cc78,
.feature_cdf3,
.photo_static_a74d,
.outline_282c,
.icon-e0a1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .menu-a715,
  .filter_copper_0403,
  .accordion-middle-5ddc,
  .accent-5517,
  .item_middle_a8bb,
  .complex-3769,
  .fixed_cc78,
  .feature_cdf3,
  .photo_static_a74d,
  .outline_282c,
  .icon-e0a1 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.east-16bd,
.box-9e67,
.large_cfdb,
.dropdown-7a26,
.rough-158c,
.glass-f9aa,
.footer-large-3584,
.focus-simple-d26c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.pink-cb50,
.video_short_402a,
.box_huge_08b8 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pink-cb50 > *,
.video_short_402a > *,
.box_huge_08b8 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: fcf8 */
.ghost-box-p6 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.1;
}
