/* {$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;
}

.summary_center_e778 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.link_e924 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .link_e924 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .link_e924 {
        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 */
.smooth-3ad6 {
    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);
}

.tooltip-dac3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .tooltip-dac3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .tertiary-13a8 {
        grid-column: 1;
    }
    
    .bright-eebd {
        grid-column: 2;
    }
    
    .block-hard-2e46 {
        grid-column: 3;
    }
}

.tertiary-13a8 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.tertiary-13a8:hover img {
    transform: scale(1.05);
}

/* Navigation */
.pro-00e4 {
    display: none;
}

@media (min-width: 1024px) {
    .pro-00e4 {
        display: block;
    }
}

/* Grouped Navigation */
.in-709c {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mini_58fb {
    position: relative;
}

.status-pro-9e87 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.mini_58fb .gallery-focused-06a5 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.gallery-focused-06a5 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.preview-d9a1 {
    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;
}

.preview-d9a1:hover,
.preview-d9a1.fn-active-fd14 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.next-92d8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .next-92d8 {
        display: flex;
    }
}

/* Mobile Register Button */
.bright-eebd {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .bright-eebd {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.list_next_18e5 {
    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;
}

.list_next_18e5::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 */
.block-hard-2e46 {
    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) {
    .block-hard-2e46 {
        display: none;
    }
}

.block-hard-2e46 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.block-hard-2e46.fn-active-fd14 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.block-hard-2e46.fn-active-fd14 span:nth-child(2) {
    opacity: 0;
}

.block-hard-2e46.fn-active-fd14 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.backdrop_a067 {
    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;
}

.backdrop_a067.fn-active-fd14 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.clean-2473 {
    overflow: hidden;
}

.widget_a26a {
    list-style: none;
    padding: 0.75rem 0;
}

.tertiary-3d91 {
    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;
}

.tertiary-3d91:hover,
.tertiary-3d91.fn-active-fd14 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tertiary-3d91.texture-medium-fc83 {
    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;
}

.tertiary-3d91.texture-medium-fc83::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 */
.easy-ad6a {
    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;
}

.border_old_18bf {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.border_old_18bf:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.active_47f1 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.active_47f1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.heading_ddef {
    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;
}

.heading_ddef:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.basic_bcce {
    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;
}

.sort-a292 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.sort-a292:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shadow_mini_590b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shadow_mini_590b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.image-862d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.image-862d: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);
}

.inner-c02a {
    font-size: 1em;
    font-weight: 700;
}

.block_pressed_d341 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.rough_68fd {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.rough_68fd::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;
}

.black_0eaa {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .black_0eaa {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.info_0211 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.component-878c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.dynamic_0aaf {
    margin-bottom: 2rem;
}

.progress_full_407d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .progress_full_407d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-prev-6e8c {
    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);
}

.summary-2567 {
    font-size: 1.5rem;
}

.notice-d12b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hero-right-a123 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-57d3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.sidebar-57d3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.picture-medium-0aa0 {
    text-align: center;
    margin-bottom: 3rem;
}

.container_silver_41fc {
    margin-bottom: 1rem;
}

.main-abc8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.full_2af6 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .full_2af6 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .full_2af6.action-1392 {
        direction: rtl;
    }
    
    .full_2af6.action-1392 > * {
        direction: ltr;
    }
}

.narrow-c41f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.narrow-c41f:first-child {
    margin-top: 0;
}

.image_pressed_6af2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.old_1dc2 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.old_1dc2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.panel-c149 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-c149 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_faa3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wide_1b5b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.easy_951f {
    list-style: none;
}

.easy_951f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.easy_951f li:last-child {
    border-bottom: none;
}

/* Games Features */
.wrapper-next-2aed {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.menu_under_5c6c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.paragraph_e3e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.media_solid_7819 {
    margin: 2rem 0;
}

.filter-south-a9ee {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.bottom_3621 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.clean_8b42 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.next_032e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.wide_07af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_07af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-2ffb {
    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);
}

.status-2ffb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_31f3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video-1d0d {
    font-size: 1.5rem;
}

.in_174a {
    color: var(--accent-color);
    margin: 0;
}

.alert-hard-29a9 {
    list-style: none;
}

.alert-hard-29a9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.alert-hard-29a9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.widget_3f87 {
    margin: 2rem 0;
}

.black_1e5e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.detail-hovered-a504 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .detail-hovered-a504 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_west_1399 {
    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);
}

.backdrop-blue-fa10 {
    font-size: 1.25rem;
}

.next-2b6c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.fresh_22fe,
.out_67bb {
    text-align: center;
    margin: 2rem 0;
}

.dark-3ce3,
.highlight-906b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pattern-light-2333 {
    margin: 2rem 0;
    text-align: center;
}

.small-fde9 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.small-fde9::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;
}

.slider_8ca6 {
    position: relative;
    z-index: 1;
}

.banner_2273 {
    margin-bottom: 1rem;
}

.search-2866 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upper_9caf {
    margin-bottom: 3rem;
}

.description-d9c7 {
    margin-top: 3rem;
}

.hard_7e65 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hard_7e65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_7e65 .backdrop-prev-6e8c {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red-f6e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.yellow_a40d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.box-rough-bad8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.wrapper_9d9a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .wrapper_9d9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_9d9a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.summary-new-318a {
    margin-bottom: 1rem;
}

.new-6a84 img {
    margin-bottom: 1rem;
}

.black_d5c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-a159 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tiny-05b6 {
    list-style: none;
}

.tiny-05b6 li {
    margin-bottom: 0.5rem;
}

.tiny-05b6 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tiny-05b6 a:hover {
    color: var(--accent-color);
}

.lite_2ebc {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.copper_f085 {
    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);
}

.copper_f085:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.focused_0d0b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.focused_0d0b p {
    margin-bottom: 0.25rem;
}

.feature-c160 {
    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) {
    .feature-c160 {
        flex-direction: row;
    }
}

.pro-135f {
    text-align: center;
}

@media (min-width: 768px) {
    .pro-135f {
        text-align: left;
    }
}

.pro-135f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fresh_274b {
    font-size: 0.75rem !important;
}

.popup-fe95 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.picture-4185 {
    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);
    }
}

.up-ae8b {
    animation: fadeInUp 0.6s ease-out;
}

.hero-dark-fba4 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tabs-small-6378 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-small-6378 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.yellow-77d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow-77d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-b3e4 {
    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);
}

.light-b3e4 .paragraph_e3e8 {
    font-size: 1.25rem;
}

.light-b3e4 .block-fresh-0c68 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.preview-6042 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview-6042 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-aaa7 {
    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);
}

.old-aaa7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_c65e {
    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);
}

.steel_c7b4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.frame_right_5cf9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-stale-6b5f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-north-82db {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message-north-82db .outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-north-82db .white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar_326a {
    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);
}

.badge-first-5ba2 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.badge-first-5ba2 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.badge-first-5ba2 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.breadcrumb-full-5f87 {
    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);
}

.menu-eef0 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.motion-b051 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.motion-b051 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.motion-b051 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);
}

.motion-b051 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.motion-b051 input::placeholder {
    color: var(--text-muted);
}

.grid-f319 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.component_c8ec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.component_c8ec input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.accordion_f43d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.accordion_f43d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.detail-hovered-a504 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-hovered-a504 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_west_1399 {
    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);
}

.paragraph_west_1399 .backdrop-blue-fa10 {
    font-size: 1.25rem;
}

.paragraph_west_1399 .next-2b6c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.dim-63ac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_pro_441f {
    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);
}

.feature_pro_441f .paragraph_e3e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_pro_441f .outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_pro_441f .white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-3284 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown_617f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.brown_617f .pressed_b681 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.brown_617f .photo_last_e73b {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-f4e8 {
    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);
}

.image-284e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image-284e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_center_01e4 {
    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);
}

.tooltip_center_01e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_c7c9 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dynamic-b0b2 {
    flex: 1;
}

.input_upper_e809 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.icon-active-4c65 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.photo_green_f1a5 {
    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);
}

.photo_green_f1a5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.carousel-24db {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-24db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-cb30 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red-cb30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_hovered_42bd {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas_1473 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component-2235 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.overlay_465e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.easy-b872 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-selected-bb8b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_9b14 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_9b14 .simple_0eb9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_9b14 .block-3199 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-fa17 {
    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);
}

.dropdown_7431 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_4dda {
    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);
}

.overlay_4dda .paragraph_e3e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_4dda .outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay_4dda .white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-2edc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-2edc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-smooth-c726 {
    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);
}

.accent-smooth-c726:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.accent-f0d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-f0d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-medium-75d4 {
    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);
}

.layout-medium-75d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-a937 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-5ef0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom_3621 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.accent_simple_acb5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.last-8c6b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_ac18 {
    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);
}

.tiny_ac18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle_6276 {
    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);
}

.solid-bf58 {
    flex: 1;
}

.purple-3975 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.image-black-b070 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tag_slow_ce09 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_d40b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-9ad7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-9ad7 .pressed_b681 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-9ad7 .photo_last_e73b {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_67bb {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-complex-cfca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-complex-cfca {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.footer-11b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-11b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-51ef {
    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);
}

.in-51ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-d201 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_huge_970b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-6275 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.frame_5af8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.left-657b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-ed7e {
    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);
}

.title_d957 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_medium_3b31 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot-7a0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_7431 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_4dda {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.overlay_4dda .outline_cool_f137 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay_4dda .white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_8c37 {
    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);
}

.out_9afd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_9afd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_9afd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_9890 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column_9890:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-f076 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-ff28 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.rough_b4d7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip_green_6cfe {
    padding: 1.5rem;
}

.simple_48ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.inner-3f6e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-3f6e 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;
}

.inner-3f6e li:last-child {
    border-bottom: none;
}

.inner-3f6e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.simple_d742 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple_d742 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_e1ad {
    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);
}

.status_e1ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dirty-a823 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-dark-8ad2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plasma_42ae {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focused-2cc8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.button-orange-137a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_light_0272 {
    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);
}

.hidden_f6b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.current_1809 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_east_9610 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-brown-b6e6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sidebar_bb54 {
    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);
}

.liquid_7f30 {
    text-align: center;
}

.heading-blue-3ce9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-8ba3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wood-d59f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-6f87 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-6f87 .outline_cool_f137 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last-6f87 .white_487a {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_thick_11ed {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_thick_11ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_thick_11ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex_d988 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.complex_d988:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_1419 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.steel_188a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outline_cool_f137 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notice_84a5 {
    padding: 1.5rem;
}

.white_487a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.button-active-23bd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-active-23bd 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;
}

.button-active-23bd li:last-child {
    border-bottom: none;
}

.button-active-23bd li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.overlay-stale-7362 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.menu_static_543a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_static_543a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_64cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-first-6574 {
    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);
}

.layout_c65e {
    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;
}

.steel_c7b4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame_right_5cf9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-b42b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper-2f67 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search_static_5960 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-b2c4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.icon-prev-ee45 {
    display: flex;
    gap: 1rem;
}

.icon-prev-ee45 .over-9ab9 {
    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;
}

.nav_eb71 {
    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);
}

.table_018a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shadow-cc18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow-cc18 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;
}

.shadow-cc18 li:last-child {
    border-bottom: none;
}

.shadow-cc18 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.frame_wood_14f0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame_wood_14f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_wood_14f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-2996 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-2996:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-5441 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.picture-narrow-a925 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.simple_0eb9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.top-848f {
    font-size: 1rem;
}

.focus-hot-d3d8 {
    padding: 1.5rem;
}

.block-3199 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.purple-927d {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.purple-927d .liquid_7f30 {
    text-align: center;
}

.purple-927d .video-8ba3 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.purple-927d .content-new-0d5f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.item_7cc6 {
    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);
}

.item_7cc6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.column-red-810b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-red-810b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_8984 {
    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);
}

.panel_8984:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_lower_d816 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_small_3f2d {
    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);
}

.caption_silver_43cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_93c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid_f9bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid_fa98 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.item-f7bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_db05 {
    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);
}

.form-36f6 {
    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;
}

.form-36f6.message-4697 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.form-36f6.pink-8bd4 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.form-36f6.text_left_5cb0 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.form-36f6.gradient-85f7 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.form-36f6.background-rough-d91c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.shadow-solid-c497 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description_slow_8787 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-a2aa {
    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);
}

.preview-b9de {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status-3284 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-3284 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.status-3284 li:last-child {
    border-bottom: none;
}

.status-3284 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.silver_bb09 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .silver_bb09 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver_bb09 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-e929 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery-e929:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-e929.outer-5921 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .gallery-e929.outer-5921 {
        grid-column: span 3;
    }
}

.title-4c93 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.gallery-e929.outer-5921 .title-4c93 {
    background: rgba(6, 182, 212, 0.1);
}

.pattern-small-fe9a {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.content_297c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.gallery-e929.outer-5921 .content_297c {
    color: var(--info-color);
}

.dynamic-bc5d {
    padding: 1.5rem;
    text-align: center;
}

.surface-392f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gallery-e929.outer-5921 .surface-392f {
    color: var(--info-color);
}

.badge-advanced-3f92 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dropdown-new-92a7 {
    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 */
.layout-simple-6627 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-simple-6627 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_gas_7219 {
    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);
}

.info_gas_7219:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_fbbf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_pro_441f {
    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);
}

.backdrop-blue-fa10 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_4942 {
    flex: 1;
}

.black_1e5e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_6a51 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-west-60b2 {
    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);
}

.description_93fc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.middle_3d79 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.picture-4185 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.middle_330e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_330e .liquid_7f30 {
    text-align: center;
}

.middle_330e .heading-blue-3ce9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.middle_330e .video-8ba3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.banner-1577 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_east_5f77 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-0f9e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.medium_7836 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-smooth-7d55 {
    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);
}

.hidden-cde1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-pink-2523 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-large-2268 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary-large-2268 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-large-2268 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm_08fb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.warm_08fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer_b15f {
    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);
}

.backdrop-tall-af89 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media_steel_76e9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gradient-hard-b54e {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gradient-hard-b54e.accordion-purple-d996 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gradient-hard-b54e.surface_ea97 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.gradient-hard-b54e.section-selected-93fc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.list_430c {
    padding: 1.5rem;
    text-align: center;
}

.next_cecb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.yellow_b882 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.yellow_b882 .form_white_dd47 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.outline-hovered-d4d9 {
    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);
}

.outline-hovered-d4d9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accordion-bc5d {
  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);
}

.footer-65a5 {
    text-align: center;
}

.footer-65a5 .heading-blue-3ce9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.footer-65a5 .video-8ba3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.frame_soft_054d { text-align: center; }
.breadcrumb-792b { text-align: left; }
.pressed_943e { text-align: right; }

.inner-4324 { margin-bottom: 0; }
.text_a1f7 { margin-bottom: 0.5rem; }
.row_silver_e854 { margin-bottom: 1rem; }
.blue_f03d { margin-bottom: 1.5rem; }
.input-31ad { margin-bottom: 2rem; }

.red_5fe1 { margin-top: 0; }
.item-5002 { margin-top: 0.5rem; }
.aside-thick-96b7 { margin-top: 1rem; }
.widget_072e { margin-top: 1.5rem; }
.brown-505e { margin-top: 2rem; }

.fn-hidden-fd14 { display: none; }
.fn-visible-fd14 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .rough_68fd {
        padding: 6rem 0 3rem;
    }
    
    .black_0eaa {
        text-align: center;
    }
    
    .full_2af6 {
        text-align: center;
    }
    
    .progress_full_407d {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .smooth-3ad6,
    .backdrop_a067,
    .small-fde9,
    .box-rough-bad8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .rough_68fd {
        background: none;
    }
}

/* Providers Section */
.list-out-3d31 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-action-b012 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-action-b012 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary-action-b012 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-979c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.north-979c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-6364 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tabs-98f7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.list-7af7 {
    list-style: none;
    padding: 0;
}

.list-7af7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.list-7af7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.breadcrumb_0fb4 {
    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);
}

.breadcrumb_0fb4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.focused_0b27 {
    padding: var(--section-padding);
}

.top_4ee7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_4ee7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-center-0b81 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.background-center-0b81:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.background_in_e98d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.panel-75f3 {
    display: flex;
    flex-direction: column;
}

.carousel-14a8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.plasma_2dfc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dropdown_0bbc {
    color: var(--accent-color);
}

.widget_1035 {
    font-size: 1.25rem;
}

.logo_gas_76de {
    margin-bottom: 1rem;
}

.logo_gas_76de p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.gradient_d081 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cool-47da {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.liquid_7f30 {
    text-align: center;
}

.heading-blue-3ce9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-8ba3 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.link_rough_3ccd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-369b {
    margin: 2rem 0;
}

.block-steel-e864 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.block-steel-e864 .paragraph_e3e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-purple-bed3 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination_6033 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.pagination_6033:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown-smooth-aba0 {
    font-size: 2rem;
}

.photo-dim-c288 {
    display: flex;
    flex-direction: column;
}

.pro_2581 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.thick_b47f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.tag_black_da91 {
    padding: var(--section-padding);
}

.input_281d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input_281d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_281d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_under_f906 {
    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);
}

.feature_under_f906:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_under_f906 .heading-blue-3ce9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.feature_under_f906 .video-8ba3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.feature_under_f906 .table_727f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.static_f7be {
    margin-top: 4rem;
}

.orange-bfcd {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.container-iron-aec1 {
    overflow-x: auto;
}

.lower_3449 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lower_3449 thead {
    background: var(--accent-color);
}

.lower_3449 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.lower_3449 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.lower_3449 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.lower_3449 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.progress-4bf0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-1118 {
    max-width: 900px;
    margin: 0 auto;
}

.up-35ea {
    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);
}

.up-35ea:hover {
    border-color: var(--accent-color);
}

.disabled_over_d739 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.disabled_over_d739 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.image-b523 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.up-35ea.fn-active-fd14 .image-b523 {
    transform: rotate(45deg);
}

.hero-short-76c4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.up-35ea.fn-active-fd14 .hero-short-76c4 {
    max-height: 1000px;
}

.hero-short-76c4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.description-5f99 {
    padding: var(--section-padding);
}

.badge-first-5ba2 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.popup-fixed-ce87 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-active-e389 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-active-e389 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left_da04 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-4698 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dropdown_702c {
    font-size: 2rem;
}

.tag_top_8d6a {
    color: var(--text-white);
    margin: 0;
}

.preview_dynamic_0f62 {
    list-style: none;
    padding: 0;
}

.preview_dynamic_0f62 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview_dynamic_0f62 li:last-child {
    border-bottom: none;
}

.filter-490e {
    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);
}

.filter-490e p {
    color: var(--success-color);
    margin: 0;
}

.main-steel-1e88 {
    margin-top: 3rem;
}

.table_018a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.module_pro_75f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module_pro_75f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_hard_1937 {
    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);
}

.section-south-a025 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pagination_hard_1937 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.list_93f8 {
    padding: var(--section-padding);
}

.fast_f233 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_f233 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_cf6f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stone_cf6f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.wrapper_2c53 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-up-02b2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hard-3401 {
    flex: 1;
}

.brown-945c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard-46f1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.progress_dynamic_356c {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-f6c7 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-f6c7:last-child {
    border-bottom: none;
}

/* Comparison Section */
.background_selected_5c80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tabs-clean-4d88 {
    padding: var(--section-padding);
}

.red-7eb9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.shadow-out-6b59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-out-6b59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-aa67 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-d0bc, .solid-b230, .white_6c9a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.white_6c9a {
    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 */
.pagination-slow-3e33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-8466 {
    margin: 2rem 0;
}

.image-dim-5be6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_cold_76a5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-66da {
    list-style: none;
    padding: 0;
}

.feature-66da 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;
}

.feature-66da li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.feature-66da li:last-child {
    border-bottom: none;
}

.notification-54bd {
    text-align: center;
    margin-top: 2rem;
}

.sort_red_0307 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.avatar-bronze-7e40 {
    padding: var(--section-padding);
}

.mini_2351 {
    margin: 2rem 0;
}

.inner-8197 {
    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) {
    .inner-8197 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.inner-8197:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tall-165f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.focus-bd22 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.input_3a7d {
    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;
}

.info_0d73 {
    flex: 1;
}

.selected_a955 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.container_stone_e786 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.item_dirty_2c3c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.widget-142e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .widget-142e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.info-aab9 {
    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);
}

.info-aab9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info-aab9 .heading-blue-3ce9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-aab9 .video-8ba3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.picture-9d94 {
    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);
}

.accordion-9479 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.accordion-9479 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.banner_1b3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .banner_1b3a {
        grid-template-columns: 1fr 1fr;
    }
}

.glass_fd78 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright_eedd {
    margin-bottom: 1.5rem;
}

.bright_eedd label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bright_eedd input,
.bright_eedd 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;
}

.bright_eedd input:focus,
.bright_eedd select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_dynamic_1e8b {
    width: 100%;
    margin-top: 1rem;
}

.tabs_out_75ba {
    display: flex;
    align-items: center;
}

.white-882c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.paragraph-short-89e4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.south_bb8c {
    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;
}

.background_4dbd {
    color: var(--text-gray);
}

.status-pink-a6ad {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.left_132b {
    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);
}

.left_132b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.upper_adc6 {
    margin-top: 3rem;
}

.table-huge-82ae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.fast-8178 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_f124 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.layout-025a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-025a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.badge-8221 {
    padding: var(--section-padding);
}

.dynamic-69e6 {
    margin: 2rem 0;
}

.row-copper-90d2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.search-4a61 {
    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;
}

.search-4a61:hover, .search-4a61.fn-active-fd14 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.right_2c75 {
    display: none;
}

.right_2c75.fn-active-fd14 {
    display: block;
}

.picture_857d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-c830 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.block-9fae h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.block-9fae ul {
    list-style: none;
    padding: 0;
}

.block-9fae ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.block-9fae ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pattern-3db3 {
    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 */
.hero_7212 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-a825 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_9d04 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon_db6a {
    color: var(--accent-color);
    margin: 0;
}

.paper_4afa {
    display: flex;
    gap: 1.5rem;
}

.section-hot-ded6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.card-a931 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.info_3963 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.info_3963.stale-9171 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.info_3963.menu-ce93 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.info_3963.mask-smooth-a30d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.title-tiny-3d82 {
    margin-top: 2rem;
}

.south-4b61 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thumbnail_2da6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .thumbnail_2da6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-5683 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.gas_6493 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form_a2e7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.outline_d8c7 {
    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 */
.tag-north-dbff {
    padding: var(--section-padding);
}

.button_gold_1548 {
    margin: 2rem 0;
}

.status-6e54 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.table-b85a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.table_fb93 {
    list-style: none;
    padding: 0;
}

.table_fb93 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;
}

.table_fb93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.table_fb93 li:last-child {
    border-bottom: none;
}

.iron_8d74 {
    margin: 2rem 0;
}

.popup-purple-a631 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface-d631 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .surface-d631 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.simple-9b59 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_current_be5d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-f4ff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert-brown-97ee {
    margin-top: 2rem;
}

.input_upper_e809 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.menu-out-01ca {
    list-style: none;
    padding: 0;
}

.rough_ffda {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.rough_ffda a {
    color: var(--accent-color);
    text-decoration: none;
}

.rough_ffda a:hover {
    text-decoration: underline;
}

.huge-12a1 {
    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 */
.pattern-f079 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge-db07 {
    margin: 2rem 0;
}

.shade-76c6 {
    margin-bottom: 3rem;
}

.shade-76c6 .footer_cold_76a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.texture-60d9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fixed-df8d {
    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);
}

.fixed-df8d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.north-a4ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .north-a4ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-pressed-3aff {
    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 */
.simple_fc3c {
    padding: var(--section-padding);
}

.detail-advanced-a440 {
    margin: 2rem 0;
}

.notice-south-def5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag-2070 {
    overflow-x: auto;
    margin: 2rem 0;
}

.preview_east_a7ab {
    background: rgba(6, 182, 212, 0.1) !important;
}

.icon-185d {
    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;
}

.message_copper_734e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.highlight-tiny-53fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .highlight-tiny-53fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-static-5ba3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-static-5ba3 .paragraph_e3e8 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.link-static-5ba3 .outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fluid_62b3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.south-d72e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-a445 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-a445 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_4a5e {
    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;
}

.filter_4a5e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.alert-92d6 {
    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);
}

.link-medium-3a0a {
    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;
}

.small-7ed8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_dcd1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.lite_5d2f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.content-8c32 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern_complex_46da {
    color: var(--text-white);
    font-weight: 600;
}

.detail-ff65 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty-0b0f {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dirty-0b0f .over-9ab9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.panel_old_0a3d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_old_0a3d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-pink-fec1 {
    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);
}

.component-pink-fec1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-pink-fec1 .heading-blue-3ce9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-pink-fec1 .video-8ba3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tabs_middle_6c84 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_small_c7ee {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.table_small_c7ee strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.left-657b {
    margin: 2rem 0;
}

.background-ed7e {
    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);
}

.background-ed7e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.title_d957 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown_e797 {
    flex: 1;
}

.secondary_medium_3b31 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot-7a0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.dropdown_7431 {
    margin: 2rem 0;
}

.overlay_4dda {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_4dda .outline_cool_f137 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.overlay_4dda .white_487a {
    color: var(--text-gray);
    margin: 0;
}

.hard_8c37 {
    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);
}

.hard_8c37 .dark-3ce3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.fluid_62b3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.middle_6276 {
    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;
}

.solid-bf58 {
    flex: 1;
}

.image-black-b070 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tag_slow_ce09 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.layout_c65e {
    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;
}

.fluid-0d58 {
    flex: 1;
}

.steel_c7b4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.frame_right_5cf9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.search_static_5960 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.video-b2c4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.icon-prev-ee45 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.icon-prev-ee45 .over-9ab9 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.nav_eb71 {
    margin-top: 2rem;
}

.nav_eb71 .table_018a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.fixed_088f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_bb54 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .sidebar_bb54 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_bb54 .liquid_7f30 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-d59f {
    margin: 2rem 0;
}

.last-6f87 {
    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 */
.heading_current_b2fe {
    padding: var(--section-padding);
}

.notice_84a5 {
    margin-top: 1rem;
}

.button-active-23bd {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.button-active-23bd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.button-active-23bd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.bright_a568 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_tall_f39c {
    margin: 2rem 0;
}

.chip-f85f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.breadcrumb_4ef2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.narrow-dc4a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.black_795c {
    margin: 2rem 0;
}

.info-fast-72d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.info-fast-72d3 .footer_cold_76a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_c1bf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black_c1bf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message-soft-84b3 {
    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);
}

.outline-b64b {
    color: var(--text-white);
    font-weight: 600;
}

.content_94f1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.button_7b1f {
    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);
}

.button_7b1f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.secondary-action-ec1d {
    padding: var(--section-padding);
}

.menu-f0aa {
    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;
}

.menu-f0aa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tooltip_3d73 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_3d73 .section-south-a025 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_3d73 .hovered_d221 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slow-43db {
    flex: 1;
}

.shade_9d9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.grid_6f1c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_6f1c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.grid_6f1c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.image_06f4 {
    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);
}

.image_06f4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_06f4 strong {
    color: var(--warning-color);
}

/* Slots Section */
.active_dark_ea07 {
    padding: var(--section-padding);
}

.easy-b872 {
    margin: 2rem 0;
}

/* Table Games Section */
.silver-6501 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-selected-bb8b {
    margin: 2rem 0;
}

.gallery_9b14 {
    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);
}

.gallery_9b14:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gallery_9b14 .simple_0eb9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_9b14 .block-3199 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.detail-fa17 {
    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);
}

.detail-fa17 .dark-3ce3 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.sort_3726 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_easy_72a5 {
    margin: 2rem 0;
}

.message-thick-b17c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange-d3ed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_0730 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar-under-e752 {
    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);
}

.avatar-under-e752:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.avatar-under-e752.fn-active-fd14 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_paper_ec8f {
    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);
}

.footer-over-dd8b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-over-dd8b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.status_hot_80a3 {
    padding: var(--section-padding);
}

.bright_6096 {
    margin: 2rem 0;
}

.frame_0551 {
    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);
}

.frame_0551:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .frame_0551 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.thumbnail_clean_c95f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.fast_dbc8 {
    flex: 1;
}

.hover_b8a8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hot_0d50 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture_mini_7d1e {
    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;
}

.right_3a17 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thick_4b97 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.in-08f3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow-hovered-f929 {
    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;
}

.shadow-hovered-f929:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item-south-52ac {
    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);
}

.in-a09a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in-a09a strong {
    color: var(--accent-color);
}

/* New Games Section */
.lower-1e52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-west-7652 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pattern-west-7652 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern-west-7652 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-lite-8550 {
    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;
}

.icon-lite-8550:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.east-4f68 {
    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;
}

.container-9c92 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.fluid_2654 {
    font-size: 2rem;
}

.label-ff7e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.box_b1ee {
    flex: 1;
}

.dynamic_bc00 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.hover_copper_7431 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pagination_6dd0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.content-9f27 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dropdown-fast-6231 {
    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;
}

.yellow-68e3 {
    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;
}

.yellow-68e3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article-orange-7c9c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-041f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_out_3cba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .video_out_3cba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_7e60 {
    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);
}

.preview_1333 {
    color: var(--text-white);
    font-weight: 600;
}

.feature_fbdb {
    color: var(--accent-color);
    font-weight: 600;
}

.secondary-1ad5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.secondary-1ad5 strong {
    color: var(--accent-color);
}

/* Security Section */
.copper-4756 {
    padding: var(--section-padding);
}

/* Benefits Section */
.overlay-pressed-06d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.row-huge-eb23 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tag_38a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium_111c {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.search_up_59a5 {
    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) {
    .search_up_59a5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.search_up_59a5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search_up_59a5 .layout_c65e {
    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;
}

.search_up_59a5 .fluid-0d58 {
    flex: 1;
}

.search_up_59a5 .steel_c7b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.search_up_59a5 .frame_right_5cf9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hot_4165 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_4165 .black_1e5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_4165 .dim-63ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot_4165 .dim-63ac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hot_4165 .dim-63ac li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.module-pro-8e8f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.stale-411f {
    padding: var(--section-padding);
}

.element-huge-3b34 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .element-huge-3b34 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-155e {
    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);
}

.chip-155e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.chip-155e .south-5229 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-155e .gradient_pro_9721 {
    flex: 1;
}

.chip-155e .pressed_b681 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-155e .top-51b0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.east_b06f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_b06f .column-c12d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.east_b06f .info-0f78 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.east_b06f .info-0f78 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);
}

.east_b06f .info-0f78 li:last-child {
    border-bottom: none;
}

.east_b06f .info-0f78 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;
}

.east_b06f .info-0f78 li strong {
    color: var(--text-white);
}

.preview_c5a3 {
    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);
}

.preview_c5a3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.preview_c5a3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.active_f3f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-12f4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .surface-12f4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.smooth_a140 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.smooth_a140:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.next_b7ea {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-4b13 {
    font-size: 2rem;
}

.secondary_outer_5f2d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.small-2a6a {
    flex: 1;
}

.full-d9d2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-d9d2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.full-d9d2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.yellow-0d34 {
    margin-top: 3rem;
}

.status-6e54 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.table-b85a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_fb93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_fb93 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.table_fb93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.table_fb93 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.heading-2057 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_full_3dc2 {
    margin: 2rem 0;
}

.focused-70e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.focused-70e3 .footer_cold_76a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb-blue-c982 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .breadcrumb-blue-c982 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wide_e818 {
    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);
}

.wide_e818:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.detail_83a1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.disabled-slow-6160 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.icon-plasma-5a7d {
    padding: var(--section-padding);
}

.pagination_solid_7338 {
    margin: 2rem 0;
}

.photo_6365 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .photo_6365 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_6365 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_0c72 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_0c72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header_244b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.background-middle-b1d8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.out_a9d4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.out_a9d4.stale_de57 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hidden_20ab {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.paragraph_fixed_a56f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.old-5998 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.warm_1776 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description_tiny_7a5d {
    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);
}

.description_tiny_7a5d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_tiny_7a5d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.pattern-cool-c638 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-gold-3dc1 {
    margin: 2rem 0;
}

.disabled_cool_9ae3 {
    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) {
    .disabled_cool_9ae3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.disabled_cool_9ae3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled_cool_9ae3::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);
}

.black_090a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.modal_c022 {
    flex: 1;
}

.article-4954 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.panel-hard-37c5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-hard-37c5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_1681 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-065e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_7453 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert_7453 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_82ab {
    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);
}

.hover_df2f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fast_aa2d {
    flex: 1;
}

.picture-hovered-414c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.container_0421 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar_e8e6 {
    margin-top: 2rem;
    text-align: center;
}

.huge_7669 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.huge_7669 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.column-red-810b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-red-810b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_8984 {
    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);
}

.panel_8984:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.panel_8984 .dirty-a823 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_8984 .gradient-dark-8ad2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.panel_8984 .plasma_42ae {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.panel_8984 .focused-2cc8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.dropdown-d278 {
    padding: var(--section-padding);
}

.card_small_3f2d .icon-east-66f8 {
    flex: 1;
}

/* Promo Calendar Section */
.hover-iron-66f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first_a6cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_a6cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_9a2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_7c02 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.nav_stale_33ec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro_9d10 {
    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);
}

.picture_daaa {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner-3706 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.slider_ac35 {
    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);
}

.slider_ac35 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider_ac35 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.status-cb7b {
    padding: var(--section-padding);
}

.tabs-a4c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tabs-a4c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface_advanced_b635 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-2c89 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast-24d6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast-24d6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.content-3ef8 {
    margin-top: 3rem;
}

.content-3ef8 .status-6e54 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.content-3ef8 .table-b85a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content-3ef8 .table_fb93 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.content-3ef8 .table_fb93 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.content-3ef8 .table_fb93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.content-3ef8 .table_fb93 li strong {
    color: var(--warning-color);
}

.thick-ebde {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thick-ebde strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.aside-out-4ce2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-tall-b8d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-tall-b8d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall-c94c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-c94c .footer_cold_76a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.in_b466 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wide-f745 {
    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);
}

.wide-f745:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.complex_f710 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-soft-f53f {
    flex: 1;
}

.carousel_next_6f3c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.stale-8647 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.caption-last-ea2a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.paragraph_3ad0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent_35a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .accent_35a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion-cc2e {
    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);
}

.motion-cc2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.last-023e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail_paper_37a1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.accordion-9479 {
    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);
}

.carousel_full_acfd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.carousel_full_acfd strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.link_e924 { 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; }
.sidebar-57d3, .old_1dc2 { max-width:100%; height:auto; }

.easy-ad6a, .heading_ddef, .basic_bcce { white-space:normal; }

.black_0eaa,
.full_2af6,
.layout-simple-6627,
.column-red-810b,
.dropdown_7431,
.primary-large-2268 {
  flex-wrap:wrap;
}

[class*="grid"],
.accent_35a8,
.photo_6365,
.hard_7e65 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.rough_68fd img,
.full_2af6 img,
.hero-right-a123 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.info_0211, .component-878c,
.container_silver_41fc, .main-abc8 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.container-iron-aec1 { width:100%; overflow-x:auto; }
.container-iron-aec1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.summary-action-b012 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .summary-action-b012 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.north-979c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.input_281d,
.simple_27ba,
.widget_tall_2c2e,
.over-3bc0,
.widget-142e,
.accent_35a8,
.photo_6365,
.hard_7e65,
.accordion-bc5d,
.bright_6096,
.summary-action-b012 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .input_281d,
  .simple_27ba,
  .widget_tall_2c2e,
  .over-3bc0,
  .widget-142e,
  .accent_35a8,
  .photo_6365,
  .hard_7e65,
  .accordion-bc5d,
  .bright_6096,
  .summary-action-b012 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.feature_under_f906,
.info-aab9,
.motion-cc2e,
.backdrop-prev-6e8c,
.texture_0c72,
.footer-65a5,
.frame_0551,
.north-979c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.surface_current_23be,
.caption_24c8,
.card-7db0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.surface_current_23be > *,
.caption_24c8 > *,
.card-7db0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4611 */
.widget-item-h9 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
