/* {$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;
}

.slider_active_12d7 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.panel_3f58 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .panel_3f58 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .panel_3f58 {
        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 */
.active-fa08 {
    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);
}

.large-207d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .large-207d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .video_inner_44e4 {
        grid-column: 1;
    }
    
    .hidden-75d9 {
        grid-column: 2;
    }
    
    .new-5828 {
        grid-column: 3;
    }
}

.video_inner_44e4 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.video_inner_44e4:hover img {
    transform: scale(1.05);
}

/* Navigation */
.button-hard-ef95 {
    display: none;
}

@media (min-width: 1024px) {
    .button-hard-ef95 {
        display: block;
    }
}

/* Grouped Navigation */
.wide-8e02 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.photo_hot_0870 {
    position: relative;
}

.hard_ce2f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.photo_hot_0870 .message_easy_d9ca {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.message_easy_d9ca {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.medium-6563 {
    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;
}

.medium-6563:hover,
.medium-6563.fn-active-94af {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.silver_274a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .silver_274a {
        display: flex;
    }
}

/* Mobile Register Button */
.hidden-75d9 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hidden-75d9 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.item_cf3e {
    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;
}

.item_cf3e::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 */
.new-5828 {
    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) {
    .new-5828 {
        display: none;
    }
}

.new-5828 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.new-5828.fn-active-94af span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.new-5828.fn-active-94af span:nth-child(2) {
    opacity: 0;
}

.new-5828.fn-active-94af span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.inner-73e6 {
    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;
}

.inner-73e6.fn-active-94af {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.stone-7e05 {
    overflow: hidden;
}

.paragraph-gold-7ef5 {
    list-style: none;
    padding: 0.75rem 0;
}

.gradient_thick_6fe6 {
    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;
}

.gradient_thick_6fe6:hover,
.gradient_thick_6fe6.fn-active-94af {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.gradient_thick_6fe6.preview-4c31 {
    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;
}

.gradient_thick_6fe6.preview-4c31::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 */
.thick_33da {
    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;
}

.small_300a {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.small_300a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.bright_06a4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.bright_06a4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.carousel_basic_6711 {
    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;
}

.carousel_basic_6711:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.stone-400e {
    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;
}

.hard-6c84 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hard-6c84:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.paragraph_new_519e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.paragraph_new_519e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.tall_fbf1 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.tall_fbf1: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);
}

.overlay-0668 {
    font-size: 1em;
    font-weight: 700;
}

.short_b0e2 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.sort-steel-d75d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.sort-steel-d75d::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;
}

.mini-a170 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .mini-a170 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.fluid-b9a6 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.progress_937a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.media-full-540d {
    margin-bottom: 2rem;
}

.popup-f1c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .popup-f1c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-b861 {
    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);
}

.black_8959 {
    font-size: 1.5rem;
}

.message-a2e4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.purple-e5e0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.column_white_e208 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.column_white_e208:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.carousel-4d59 {
    text-align: center;
    margin-bottom: 3rem;
}

.image_3fb4 {
    margin-bottom: 1rem;
}

.heading-a25c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel_b441 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel_b441 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel_b441.focused-22c2 {
        direction: rtl;
    }
    
    .carousel_b441.focused-22c2 > * {
        direction: ltr;
    }
}

.detail_complex_a8e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.detail_complex_a8e2:first-child {
    margin-top: 0;
}

.solid-cfdc {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.steel-593e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.steel-593e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.stone-0038 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone-0038 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail-8827 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_d5f2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_bff6 {
    list-style: none;
}

.active_bff6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_bff6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.element-48f8 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.gold-b2f3 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.smooth_6d61 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.container_40d3 {
    margin: 2rem 0;
}

.hovered-a50d {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.gallery_stale_ce27 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.container_4484 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.icon_d52b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.gas_7372 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas_7372 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-a78a {
    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);
}

.advanced-a78a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_c1ee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.row_wide_f7ce {
    font-size: 1.5rem;
}

.south_1102 {
    color: var(--accent-color);
    margin: 0;
}

.widget_north_3457 {
    list-style: none;
}

.widget_north_3457 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.widget_north_3457 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.highlight-bc0b {
    margin: 2rem 0;
}

.focus_ebae {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.logo-f96d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .logo-f96d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-selected-8636 {
    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);
}

.green_2d09 {
    font-size: 1.25rem;
}

.tabs_paper_73ac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.progress_e335,
.fast_091c {
    text-align: center;
    margin: 2rem 0;
}

.modal-hot-0c66,
.warm-8c50 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.dropdown_02a7 {
    margin: 2rem 0;
    text-align: center;
}

.description-2093 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.description-2093::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;
}

.up-4e9c {
    position: relative;
    z-index: 1;
}

.preview_6cd2 {
    margin-bottom: 1rem;
}

.white-8296 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.iron-8da4 {
    margin-bottom: 3rem;
}

.dirty_0a51 {
    margin-top: 3rem;
}

.orange_8cfc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .orange_8cfc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange_8cfc .hovered-b861 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button-ff21 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_orange_2712 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.container-clean-ae4c {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.text_hovered_4c70 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .text_hovered_4c70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text_hovered_4c70 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tall_a619 {
    margin-bottom: 1rem;
}

.row-3e7f img {
    margin-bottom: 1rem;
}

.column_brown_be7d {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-ed6d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tabs_simple_91ed {
    list-style: none;
}

.tabs_simple_91ed li {
    margin-bottom: 0.5rem;
}

.tabs_simple_91ed a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tabs_simple_91ed a:hover {
    color: var(--accent-color);
}

.list-in-29ae {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input_warm_d922 {
    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);
}

.input_warm_d922:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.message-pink-2704 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.message-pink-2704 p {
    margin-bottom: 0.25rem;
}

.image-wide-f392 {
    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) {
    .image-wide-f392 {
        flex-direction: row;
    }
}

.active_66e3 {
    text-align: center;
}

@media (min-width: 768px) {
    .active_66e3 {
        text-align: left;
    }
}

.active_66e3 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video_complex_f28f {
    font-size: 0.75rem !important;
}

.wood_88e4 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fresh_2b9d {
    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);
    }
}

.chip-tall-996e {
    animation: fadeInUp 0.6s ease-out;
}

.grid-0522 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hover_under_b2e6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_under_b2e6 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.frame_7d2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_7d2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-9a4a {
    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);
}

.pagination-9a4a .smooth_6d61 {
    font-size: 1.25rem;
}

.pagination-9a4a .dim_c6e7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.panel-medium-d8d8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel-medium-d8d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_narrow_cf55 {
    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);
}

.panel_narrow_cf55:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-wide-6191 {
    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);
}

.sort-aff2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lite_c6f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_b10e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown_bba6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.brown_bba6 .simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.brown_bba6 .soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-96da {
    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);
}

.content_76bf {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.content_76bf img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.content_76bf img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hidden_complex_6841 {
    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);
}

.carousel_hovered_361b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.element-over-aa33 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.element-over-aa33 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.element-over-aa33 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);
}

.element-over-aa33 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.element-over-aa33 input::placeholder {
    color: var(--text-muted);
}

.feature-red-0aa7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hovered_070f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.hovered_070f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.paragraph_lite_fdaf {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.paragraph_lite_fdaf:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.logo-f96d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-f96d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-selected-8636 {
    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);
}

.dropdown-selected-8636 .green_2d09 {
    font-size: 1.25rem;
}

.dropdown-selected-8636 .tabs_paper_73ac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gradient_green_2882 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_plasma_221c {
    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);
}

.border_plasma_221c .smooth_6d61 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_plasma_221c .simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_plasma_221c .soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_be2b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_f1dd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.badge_f1dd .heading_42f7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.badge_f1dd .border-upper-7d0e {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_1d79 {
    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);
}

.white-c869 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .white-c869 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-f143 {
    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);
}

.avatar-f143:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-simple-570a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.video-51fb {
    flex: 1;
}

.out_28b3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hover_ce05 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-7f61 {
    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);
}

.form-7f61:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.preview_0d20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_0d20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_active_9167 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover_active_9167:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower-67df {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-e676 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gradient-lower-1f26 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wood_e24e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-292a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-4a23 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_4008 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section_4008 .tabs_tall_a215 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_4008 .outline_tiny_cd84 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-3d45 {
    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);
}

.column-6bfc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first_52d4 {
    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);
}

.first_52d4 .smooth_6d61 {
    font-size: 2rem;
    flex-shrink: 0;
}

.first_52d4 .simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first_52d4 .soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-3397 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-3397 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-yellow-ab9b {
    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);
}

.aside-yellow-ab9b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.card_large_6cd0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_large_6cd0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-fixed-ecec {
    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);
}

.badge-fixed-ecec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_selected_9296 {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected_6ea9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery_stale_ce27 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.detail-304b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.center-8d9c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_large_6122 {
    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);
}

.outline_large_6122:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_first_ab7d {
    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);
}

.fluid_c088 {
    flex: 1;
}

.picture-full-36a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.carousel-brown-a6aa {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.banner-3ffb {
    color: var(--text-gray);
    line-height: 1.6;
}

.red-d529 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_2287 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid_2287 .heading_42f7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.liquid_2287 .border-upper-7d0e {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_091c {
    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);
}

.action_5b44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_5b44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.accordion-huge-df22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-huge-df22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_88f4 {
    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);
}

.accent_88f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-948e {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_805c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hover-8f01 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail_3dd9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary_7edf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-dc29 {
    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);
}

.rough-4ce8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_d4c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_41a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-6bfc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first_52d4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.first_52d4 .simple-ebd3 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_52d4 .soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-0ec9 {
    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);
}

.new_67aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new_67aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new_67aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_b939 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thumbnail_b939:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title_purple_1059 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-fluid-839c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification-5ecc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notification_b54e {
    padding: 1.5rem;
}

.gallery-advanced-cbb7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-9e4f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-9e4f 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;
}

.highlight-9e4f li:last-child {
    border-bottom: none;
}

.highlight-9e4f li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.video_4ade {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_4ade {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-19d4 {
    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);
}

.gallery-19d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_solid_4db5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-1ce4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.simple-1d9d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.photo-51ef {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mini_e4c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-copper-e52d {
    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);
}

.plasma_a4e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph-cold-4656 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert-lite-2942 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_center_c9e5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.iron_e825 {
    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);
}

.status-01e6 {
    text-align: center;
}

.accordion_9d2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.large_73b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-8e9c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-f4d9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-f4d9 .simple-ebd3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro-f4d9 .soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-steel-bb3b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-steel-bb3b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-steel-bb3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-a045 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.right-a045:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_8e40 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs_dynamic_f484 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.simple-ebd3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.article_fixed_32ca {
    padding: 1.5rem;
}

.soft-8dfc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content_bronze_3af1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content_bronze_3af1 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;
}

.content_bronze_3af1 li:last-child {
    border-bottom: none;
}

.content_bronze_3af1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.carousel_pro_0455 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.paper-a2eb {
    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);
}

.paper-a2eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_1b24 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-3c57 {
    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);
}

.gradient-wide-6191 {
    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;
}

.sort-aff2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite_c6f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old-223a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-f3ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.grid-yellow-a2c6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar_5f75 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-51fc {
    display: flex;
    gap: 1rem;
}

.detail-51fc .tabs-b4c6 {
    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_hard_5134 {
    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);
}

.module-slow-e70a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient-f052 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-f052 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.gradient-f052 li:last-child {
    border-bottom: none;
}

.gradient-f052 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.component_iron_8dcf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component_iron_8dcf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component_iron_8dcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-up-c2a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.module-up-c2a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-1265 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.prev_a786 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs_tall_a215 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bright-7701 {
    font-size: 1rem;
}

.layout_outer_9986 {
    padding: 1.5rem;
}

.outline_tiny_cd84 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.texture_f0b2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.texture_f0b2 .status-01e6 {
    text-align: center;
}

.texture_f0b2 .large_73b0 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.texture_f0b2 .element-dark-a8b3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.form-24d9 {
    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);
}

.form-24d9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.last-72b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-72b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_black_719c {
    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);
}

.breadcrumb_black_719c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east-33ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-b106 {
    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);
}

.container_upper_73eb {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge_a122 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_a2dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-narrow-a451 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus_5d32 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-purple-9ac7 {
    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);
}

.box_huge_582c {
    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;
}

.box_huge_582c.small-5f9a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.box_huge_582c.layout_rough_a622 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.box_huge_582c.highlight_4cfd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.box_huge_582c.media_4e84 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.box_huge_582c.steel-cb3c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.gradient_926b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_0550 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-f18c {
    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);
}

.slider_dd6d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status_be2b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_be2b 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_be2b li:last-child {
    border-bottom: none;
}

.status_be2b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.menu-upper-e688 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-upper-e688 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-upper-e688 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_yellow_e17b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status_yellow_e17b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_yellow_e17b.highlight_603e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .status_yellow_e17b.highlight_603e {
        grid-column: span 3;
    }
}

.old_9afb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.status_yellow_e17b.highlight_603e .old_9afb {
    background: rgba(6, 182, 212, 0.1);
}

.under_4b52 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.label-b50a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.status_yellow_e17b.highlight_603e .label-b50a {
    color: var(--info-color);
}

.background_first_d2b9 {
    padding: 1.5rem;
    text-align: center;
}

.element_simple_e935 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.status_yellow_e17b.highlight_603e .element_simple_e935 {
    color: var(--info-color);
}

.chip_pro_682c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tiny-802b {
    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 */
.tabs-bdb7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-bdb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_under_3fab {
    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);
}

.frame_under_3fab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_2a33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_plasma_221c {
    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);
}

.green_2d09 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale-842b {
    flex: 1;
}

.focus_ebae {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item_dynamic_c3c1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_huge_0a1a {
    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);
}

.nav-complex-f809 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.overlay-ddc0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fresh_2b9d {
    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);
}

.heading_narrow_cf8b {
  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);
}

.heading_narrow_cf8b .status-01e6 {
    text-align: center;
}

.heading_narrow_cf8b .accordion_9d2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.heading_narrow_cf8b .large_73b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag_79ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough-9578 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-hard-71fe {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel_ad81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-5ba6 {
    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);
}

.selected-d8eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature_blue_906a {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-top-f1e7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-top-f1e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-top-f1e7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_20d5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.banner_20d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_b5db {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.nav_solid_c08e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thick-69a0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.search-ec48 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-ec48.preview-b27b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.search-ec48.large_e97e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.search-ec48.text_stale_6d7e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.badge_selected_d820 {
    padding: 1.5rem;
    text-align: center;
}

.shadow-plasma-e1ad {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wood_d32a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wood_d32a .current_cb38 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.medium-0847 {
    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);
}

.medium-0847:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.south-fd4b {
  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);
}

.sort_519b {
    text-align: center;
}

.sort_519b .accordion_9d2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.sort_519b .large_73b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.complex_1d49 { text-align: center; }
.hard_e32a { text-align: left; }
.summary-1a31 { text-align: right; }

.stone_7faf { margin-bottom: 0; }
.tooltip_silver_2092 { margin-bottom: 0.5rem; }
.breadcrumb_6f0e { margin-bottom: 1rem; }
.feature-first-7d8d { margin-bottom: 1.5rem; }
.frame_92e9 { margin-bottom: 2rem; }

.status-outer-b9c8 { margin-top: 0; }
.down-5682 { margin-top: 0.5rem; }
.description-6a4e { margin-top: 1rem; }
.huge_09e5 { margin-top: 1.5rem; }
.video_simple_968f { margin-top: 2rem; }

.fn-hidden-94af { display: none; }
.fn-visible-94af { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .sort-steel-d75d {
        padding: 6rem 0 3rem;
    }
    
    .mini-a170 {
        text-align: center;
    }
    
    .carousel_b441 {
        text-align: center;
    }
    
    .popup-f1c6 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .active-fa08,
    .inner-73e6,
    .description-2093,
    .container-clean-ae4c {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .sort-steel-d75d {
        background: none;
    }
}

/* Providers Section */
.north_f529 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_white_8272 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_white_8272 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_white_8272 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-5f5a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-5f5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-middle-7cca {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.icon_036e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.purple-d93c {
    list-style: none;
    padding: 0;
}

.purple-d93c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.purple-d93c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.surface-39e6 {
    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);
}

.surface-39e6 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hero_d1af {
    padding: var(--section-padding);
}

.backdrop-smooth-c421 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-smooth-c421 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-pressed-130b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid-pressed-130b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.search-purple-27d8 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.background-dark-0b2d {
    display: flex;
    flex-direction: column;
}

.caption-west-840b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.black-b7f1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accordion_warm_f982 {
    color: var(--accent-color);
}

.slider_pro_eb6d {
    font-size: 1.25rem;
}

.complex-cebf {
    margin-bottom: 1rem;
}

.complex-cebf p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.next-be32 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.badge_selected_fe25 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.status-01e6 {
    text-align: center;
}

.accordion_9d2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.large_73b0 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.inner_44f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_hovered_78ac {
    margin: 2rem 0;
}

.down_f084 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.down_f084 .smooth_6d61 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-12b8 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail_hard_b33c {
    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;
}

.thumbnail_hard_b33c:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery_dark_ea09 {
    font-size: 2rem;
}

.column-1d30 {
    display: flex;
    flex-direction: column;
}

.disabled_077f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.slider-fresh-a5d3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.plasma-c80b {
    padding: var(--section-padding);
}

.tag-under-b20b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag-under-b20b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-under-b20b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-8654 {
    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);
}

.list-8654:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list-8654 .accordion_9d2f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.list-8654 .large_73b0 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.list-8654 .fresh-1b85 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.summary_active_6465 {
    margin-top: 4rem;
}

.motion-03b9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.up-b112 {
    overflow-x: auto;
}

.full_5df9 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.full_5df9 thead {
    background: var(--accent-color);
}

.full_5df9 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.full_5df9 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.full_5df9 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.full_5df9 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.pressed_1b9a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron-8607 {
    max-width: 900px;
    margin: 0 auto;
}

.last_b2b7 {
    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);
}

.last_b2b7:hover {
    border-color: var(--accent-color);
}

.icon-motion-1001 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.icon-motion-1001 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.carousel-middle-84e5 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.last_b2b7.fn-active-94af .carousel-middle-84e5 {
    transform: rotate(45deg);
}

.stale-96b5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.last_b2b7.fn-active-94af .stale-96b5 {
    max-height: 1000px;
}

.stale-96b5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.yellow_d101 {
    padding: var(--section-padding);
}

.content_76bf {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.progress_b39c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_selected_fc99 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_selected_fc99 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern-d616 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-ee55 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input_fixed_7480 {
    font-size: 2rem;
}

.chip-static-9e43 {
    color: var(--text-white);
    margin: 0;
}

.article-soft-000e {
    list-style: none;
    padding: 0;
}

.article-soft-000e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-soft-000e li:last-child {
    border-bottom: none;
}

.background-5d7c {
    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);
}

.background-5d7c p {
    color: var(--success-color);
    margin: 0;
}

.border-under-219a {
    margin-top: 3rem;
}

.module-slow-e70a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.heading-893c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-893c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text_4f27 {
    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);
}

.preview-c991 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text_4f27 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.breadcrumb-9a0d {
    padding: var(--section-padding);
}

.tag-motion-10c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-motion-10c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light_8671 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.light_8671:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tooltip_purple_1c8d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.text_stale_1d95 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.description_28c6 {
    flex: 1;
}

.upper-51ff {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.label_pro_ef29 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.first-3df5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-062a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-062a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.motion_df70 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.section-stone-76f0 {
    padding: var(--section-padding);
}

.dark-59a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.message_short_9175 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_short_9175 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-over-6db5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-624c, .west_0556, .action-91ca {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.action-91ca {
    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 */
.notice-3247 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_mini_4ae8 {
    margin: 2rem 0;
}

.pink_4b7f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_40c0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hero-4d34 {
    list-style: none;
    padding: 0;
}

.hero-4d34 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;
}

.hero-4d34 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hero-4d34 li:last-child {
    border-bottom: none;
}

.panel_cool_ee02 {
    text-align: center;
    margin-top: 2rem;
}

.frame_tall_9762 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.summary-8957 {
    padding: var(--section-padding);
}

.tertiary_huge_e2c2 {
    margin: 2rem 0;
}

.slow-ff97 {
    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) {
    .slow-ff97 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slow-ff97:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.up-f875 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sort-7f2a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.gallery_gas_f9c9 {
    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;
}

.label_liquid_c2ab {
    flex: 1;
}

.pagination_mini_c73e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.card-fresh-3413 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.selected-b58a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.heading_31b9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .heading_31b9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.tabs-purple-4b6c {
    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);
}

.tabs-purple-4b6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs-purple-4b6c .accordion_9d2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tabs-purple-4b6c .large_73b0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.carousel_east_63fc {
    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);
}

.paragraph_259c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.paragraph_259c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.solid_3d76 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .solid_3d76 {
        grid-template-columns: 1fr 1fr;
    }
}

.secondary-purple-5ca6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_hard_7a9d {
    margin-bottom: 1.5rem;
}

.primary_hard_7a9d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.primary_hard_7a9d input,
.primary_hard_7a9d 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;
}

.primary_hard_7a9d input:focus,
.primary_hard_7a9d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.search_east_ba3a {
    width: 100%;
    margin-top: 1rem;
}

.modal-next-8315 {
    display: flex;
    align-items: center;
}

.main-2d41 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.article_brown_fce8 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.current-8109 {
    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;
}

.notification_c9a9 {
    color: var(--text-gray);
}

.surface_liquid_7fbe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.thumbnail-27fc {
    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);
}

.thumbnail-27fc p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.preview_92b8 {
    margin-top: 3rem;
}

.notification_cool_6c8c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.yellow-bf23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue_8160 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.video-first-dfb9 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-first-dfb9:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.under_174d {
    padding: var(--section-padding);
}

.east-674d {
    margin: 2rem 0;
}

.gallery-inner-fe35 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.shade_short_0a9a {
    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;
}

.shade_short_0a9a:hover, .shade_short_0a9a.fn-active-94af {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.thumbnail-0b5a {
    display: none;
}

.thumbnail-0b5a.fn-active-94af {
    display: block;
}

.list-0761 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-49e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message_29dd h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.message_29dd ul {
    list-style: none;
    padding: 0;
}

.message_29dd ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.message_29dd ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.video-a0c7 {
    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 */
.heading_dark_3eb1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-ea18 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-69d4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-prev-8c5d {
    color: var(--accent-color);
    margin: 0;
}

.bottom_fc9f {
    display: flex;
    gap: 1.5rem;
}

.hover_dfdb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message-875e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.logo-47c1 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo-47c1.media-467e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.logo-47c1.solid-9b7b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.logo-47c1.dark_a0c5 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bronze-6749 {
    margin-top: 2rem;
}

.picture-42a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.brown_d372 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .brown_d372 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle-76e6 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.article_1b08 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.first_731b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.list-b04b {
    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 */
.progress_ffbf {
    padding: var(--section-padding);
}

.link_208b {
    margin: 2rem 0;
}

.avatar_focused_57dc {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.modal-in-89ae {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.pagination-9fe2 {
    list-style: none;
    padding: 0;
}

.pagination-9fe2 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;
}

.pagination-9fe2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.pagination-9fe2 li:last-child {
    border-bottom: none;
}

.outline_a65c {
    margin: 2rem 0;
}

.warm-9861 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip-8d93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip-8d93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cool-6567 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_rough_920a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_plasma_cba5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.box_new_6ebb {
    margin-top: 2rem;
}

.out_28b3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.box-huge-39b6 {
    list-style: none;
    padding: 0;
}

.hero-c8ee {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hero-c8ee a {
    color: var(--accent-color);
    text-decoration: none;
}

.hero-c8ee a:hover {
    text-decoration: underline;
}

.box_81b1 {
    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 */
.link-selected-cc3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_e5e4 {
    margin: 2rem 0;
}

.block_f329 {
    margin-bottom: 3rem;
}

.block_f329 .button_40c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.black-4026 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rough_f15e {
    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);
}

.rough_f15e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.preview_hard_afb6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .preview_hard_afb6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-4b73 {
    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 */
.hard-f563 {
    padding: var(--section-padding);
}

.video-025c {
    margin: 2rem 0;
}

.list_soft_5067 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dim_3116 {
    overflow-x: auto;
    margin: 2rem 0;
}

.card_a9a5 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.popup-middle-c46d {
    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;
}

.preview_full_4bd0 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.border-247b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .border-247b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-bbc2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-bbc2 .smooth_6d61 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.form-bbc2 .simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north-8ff8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.mask-257f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-a11d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-a11d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-dafd {
    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;
}

.feature-dafd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.next-b1d9 {
    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);
}

.steel-0c35 {
    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;
}

.cold_047e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pagination-complex-fd5e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.carousel-green-ac65 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.glass-506e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-0812 {
    color: var(--text-white);
    font-weight: 600;
}

.last-0627 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-d938 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-d938 .tabs-b4c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gold-6e9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-6e9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick-51d6 {
    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);
}

.thick-51d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thick-51d6 .accordion_9d2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thick-51d6 .large_73b0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.full-39df {
    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);
}

.texture_6590 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.texture_6590 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.summary_7edf {
    margin: 2rem 0;
}

.hover-dc29 {
    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);
}

.hover-dc29:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.rough-4ce8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.caption_03a9 {
    flex: 1;
}

.table_d4c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_41a1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.column-6bfc {
    margin: 2rem 0;
}

.first_52d4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_52d4 .simple-ebd3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.first_52d4 .soft-8dfc {
    color: var(--text-gray);
    margin: 0;
}

.frame-0ec9 {
    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);
}

.frame-0ec9 .modal-hot-0c66 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.north-8ff8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.notice_first_ab7d {
    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;
}

.fluid_c088 {
    flex: 1;
}

.carousel-brown-a6aa {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.banner-3ffb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.gradient-wide-6191 {
    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;
}

.detail-8b0b {
    flex: 1;
}

.sort-aff2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.lite_c6f9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.grid-yellow-a2c6 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.sidebar_5f75 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.detail-51fc {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.detail-51fc .tabs-b4c6 {
    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_hard_5134 {
    margin-top: 2rem;
}

.nav_hard_5134 .module-slow-e70a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.image-dynamic-bb69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_e825 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .iron_e825 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron_e825 .status-01e6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-8e9c {
    margin: 2rem 0;
}

.pro-f4d9 {
    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 */
.blue_cd24 {
    padding: var(--section-padding);
}

.article_fixed_32ca {
    margin-top: 1rem;
}

.content_bronze_3af1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.content_bronze_3af1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.content_bronze_3af1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.popup-74d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_fea6 {
    margin: 2rem 0;
}

.hard_04aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.info_8c09 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.white_e6c1 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.motion-5363 {
    margin: 2rem 0;
}

.backdrop-177c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.backdrop-177c .button_40c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_active_07ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo_active_07ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline-9480 {
    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);
}

.menu-d129 {
    color: var(--text-white);
    font-weight: 600;
}

.logo-small-e0a2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.avatar-9126 {
    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);
}

.avatar-9126 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.thick_84d3 {
    padding: var(--section-padding);
}

.smooth-ef2a {
    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;
}

.smooth-ef2a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dim-c234 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dim-c234 .preview-c991 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim-c234 .icon_wide_1c1c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content-inner-b4b7 {
    flex: 1;
}

.selected_65eb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.description_glass_6273 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_glass_6273 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.description_glass_6273 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.info-5d64 {
    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);
}

.info-5d64 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info-5d64 strong {
    color: var(--warning-color);
}

/* Slots Section */
.orange-369b {
    padding: var(--section-padding);
}

.notification-292a {
    margin: 2rem 0;
}

/* Table Games Section */
.smooth_1845 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-4a23 {
    margin: 2rem 0;
}

.section_4008 {
    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);
}

.section_4008:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.section_4008 .tabs_tall_a215 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_4008 .outline_tiny_cd84 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.mask-3d45 {
    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);
}

.mask-3d45 .modal-hot-0c66 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.description-dbd4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_lower_82db {
    margin: 2rem 0;
}

.banner_full_adc0 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny_ac55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge-6be2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.steel-63b6 {
    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);
}

.steel-63b6:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.steel-63b6.fn-active-94af {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_ba65 {
    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);
}

.motion_9423 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion_9423 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.tag-fluid-9ffb {
    padding: var(--section-padding);
}

.mini-2aa5 {
    margin: 2rem 0;
}

.slow_fda9 {
    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);
}

.slow_fda9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .slow_fda9 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.summary_7b91 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.mini-ccbe {
    flex: 1;
}

.top_6e1b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stale-23dd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.alert-f8fd {
    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;
}

.texture-thick-6b80 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.narrow_3e2e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.photo-947e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown_south_5c83 {
    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;
}

.dropdown_south_5c83:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.disabled_2c4d {
    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);
}

.medium-ceb8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.medium-ceb8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.footer_full_ea52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-dcc1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary-dcc1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary-dcc1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed_ae16 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.fixed_ae16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.grid-slow-f163 {
    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;
}

.row-medium-9ed4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.title_9211 {
    font-size: 2rem;
}

.north-b51d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.input-bright-d34d {
    flex: 1;
}

.menu-basic-080a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.gas-f582 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wrapper-d37d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-0f4f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.widget-paper-f1a1 {
    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;
}

.short_712c {
    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;
}

.short_712c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.image_b9ca {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-smooth-4b0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next-03ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .next-03ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_1608 {
    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);
}

.rough_4f37 {
    color: var(--text-white);
    font-weight: 600;
}

.dim_f326 {
    color: var(--accent-color);
    font-weight: 600;
}

.iron-d119 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.iron-d119 strong {
    color: var(--accent-color);
}

/* Security Section */
.dropdown_4e85 {
    padding: var(--section-padding);
}

/* Benefits Section */
.modal_9502 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.wrapper_pressed_f5d2 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hidden_5559 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow-f0fe {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.hard-8d28 {
    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) {
    .hard-8d28 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hard-8d28:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard-8d28 .gradient-wide-6191 {
    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;
}

.hard-8d28 .detail-8b0b {
    flex: 1;
}

.hard-8d28 .sort-aff2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hard-8d28 .lite_c6f9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.thumbnail_cccf {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_cccf .focus_ebae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_cccf .gradient_green_2882 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_cccf .gradient_green_2882 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.thumbnail_cccf .gradient_green_2882 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.active_dirty_0a9f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.message-north-8bd3 {
    padding: var(--section-padding);
}

.photo_350f {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .photo_350f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_green_45f8 {
    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);
}

.shadow_green_45f8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.shadow_green_45f8 .main_clean_c407 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_green_45f8 .hard-4094 {
    flex: 1;
}

.shadow_green_45f8 .heading_42f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_green_45f8 .grid-0145 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup_prev_c1fc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_prev_c1fc .fluid_a0dd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup_prev_c1fc .tabs_iron_24e1 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.popup_prev_c1fc .tabs_iron_24e1 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);
}

.popup_prev_c1fc .tabs_iron_24e1 li:last-child {
    border-bottom: none;
}

.popup_prev_c1fc .tabs_iron_24e1 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;
}

.popup_prev_c1fc .tabs_iron_24e1 li strong {
    color: var(--text-white);
}

.shade_warm_4e9a {
    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);
}

.shade_warm_4e9a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_warm_4e9a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.solid_c061 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_green_d77b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb_green_d77b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-pressed-34de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-pressed-34de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pattern_32e3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stone-6027 {
    font-size: 2rem;
}

.pro_0e72 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.thick_1d55 {
    flex: 1;
}

.secondary_prev_34d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary_prev_34d9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.secondary_prev_34d9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.status_cf9c {
    margin-top: 3rem;
}

.avatar_focused_57dc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.modal-in-89ae {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination-9fe2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-9fe2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pagination-9fe2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pagination-9fe2 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shade-b719 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_south_d887 {
    margin: 2rem 0;
}

.sort_in_fec1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.sort_in_fec1 .button_40c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-right-06c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title-right-06c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_narrow_5eba {
    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);
}

.hidden_narrow_5eba:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.input-bottom-ff2b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.inner-d3ae {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.upper_f689 {
    padding: var(--section-padding);
}

.grid-advanced-6b90 {
    margin: 2rem 0;
}

.large_ed48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .large_ed48 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large_ed48 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under-acdd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.under-acdd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail_bronze_b38d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hidden-6d02 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.wrapper-north-b520 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper-north-b520.static_0896 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.search-b406 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.label-stone-0d22 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.east_fdd4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rough-285b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop_upper_c968 {
    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);
}

.backdrop_upper_c968 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop_upper_c968 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hidden_bfb2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_9d39 {
    margin: 2rem 0;
}

.selected_da09 {
    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) {
    .selected_da09 {
        flex-direction: column;
        gap: 1rem;
    }
}

.selected_da09:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.selected_da09::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);
}

.module_hard_9f8a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.caption_current_c13c {
    flex: 1;
}

.thumbnail-medium-5ef5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.filter_next_7422 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_next_7422 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_36a3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-pro-0bc9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_lite_0fec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .row_lite_0fec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini-ccca {
    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);
}

.thick_6164 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status_hard_f11d {
    flex: 1;
}

.background-9804 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.logo_advanced_9935 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture-yellow-6b43 {
    margin-top: 2rem;
    text-align: center;
}

.accordion_4b39 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion_4b39 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.last-72b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-72b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_black_719c {
    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);
}

.breadcrumb_black_719c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb_black_719c .tertiary_solid_4db5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_black_719c .layout-1ce4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.breadcrumb_black_719c .simple-1d9d {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.breadcrumb_black_719c .photo-51ef {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.panel-lite-7127 {
    padding: var(--section-padding);
}

.focused-b106 .down_6c3b {
    flex: 1;
}

/* Promo Calendar Section */
.huge-76e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_054c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_054c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_e55b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_da07 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.bronze-fd09 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yellow-d676 {
    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);
}

.module_ad53 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar-6815 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.picture-9ed4 {
    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);
}

.picture-9ed4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture-9ed4 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.preview_23e7 {
    padding: var(--section-padding);
}

.picture_123e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .picture_123e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.progress_wood_ee34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_fixed_c3fd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside-7245 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-7245 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.text-stone-fb9f {
    margin-top: 3rem;
}

.text-stone-fb9f .avatar_focused_57dc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.text-stone-fb9f .modal-in-89ae {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text-stone-fb9f .pagination-9fe2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.text-stone-fb9f .pagination-9fe2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.text-stone-fb9f .pagination-9fe2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.text-stone-fb9f .pagination-9fe2 li strong {
    color: var(--warning-color);
}

.paragraph-2798 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-2798 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.badge_orange_f635 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-black-9ef8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-black-9ef8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_smooth_196c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_smooth_196c .button_40c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tag-purple-d215 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-7dd2 {
    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);
}

.small-7dd2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.soft_d656 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle_1e4e {
    flex: 1;
}

.surface-0e26 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.simple_64bd {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pattern_up_0a38 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.box_brown_4b3f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar_422d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .sidebar_422d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-c566 {
    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);
}

.up-c566:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box-bottom-52f9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table_e8ca {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph_259c {
    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);
}

.slow-d45d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slow-d45d strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.panel_3f58 { 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; }
.column_white_e208, .steel-593e { max-width:100%; height:auto; }

.thick_33da, .carousel_basic_6711, .stone-400e { white-space:normal; }

.mini-a170,
.carousel_b441,
.tabs-bdb7,
.last-72b0,
.column-6bfc,
.logo-top-f1e7 {
  flex-wrap:wrap;
}

[class*="grid"],
.sidebar_422d,
.large_ed48,
.orange_8cfc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.sort-steel-d75d img,
.carousel_b441 img,
.purple-e5e0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.fluid-b9a6, .progress_937a,
.image_3fb4, .heading-a25c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.up-b112 { width:100%; overflow-x:auto; }
.up-b112 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.pattern_white_8272 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .pattern_white_8272 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.box-5f5a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tag-under-b20b,
.panel-tiny-4f41,
.wrapper_bronze_8a73,
.nav_outer_8585,
.heading_31b9,
.sidebar_422d,
.large_ed48,
.orange_8cfc,
.south-fd4b,
.mini-2aa5,
.pattern_white_8272 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tag-under-b20b,
  .panel-tiny-4f41,
  .wrapper_bronze_8a73,
  .nav_outer_8585,
  .heading_31b9,
  .sidebar_422d,
  .large_ed48,
  .orange_8cfc,
  .south-fd4b,
  .mini-2aa5,
  .pattern_white_8272 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.list-8654,
.tabs-purple-4b6c,
.up-c566,
.hovered-b861,
.under-acdd,
.sort_519b,
.slow_fda9,
.box-5f5a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.label-06a9,
.detail-bottom-e14c,
.container_80a3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.label-06a9 > *,
.detail-bottom-e14c > *,
.container_80a3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6a1d */
.ghost-box-z6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
