/* {$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;
}

.card-3185 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.slow-7dfa {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .slow-7dfa {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .slow-7dfa {
        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 */
.video_cool_2d24 {
    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);
}

.center-60f0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .center-60f0 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .media_stone_eb55 {
        grid-column: 1;
    }
    
    .caption-6a51 {
        grid-column: 2;
    }
    
    .steel-52a4 {
        grid-column: 3;
    }
}

.media_stone_eb55 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.media_stone_eb55:hover img {
    transform: scale(1.05);
}

/* Navigation */
.full_1f2c {
    display: none;
}

@media (min-width: 1024px) {
    .full_1f2c {
        display: block;
    }
}

/* Grouped Navigation */
.block_922d {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.last_1766 {
    position: relative;
}

.table_bronze_eb4c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.last_1766 .accordion_iron_c7ad {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.accordion_iron_c7ad {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.surface_dc8f {
    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;
}

.surface_dc8f:hover,
.surface_dc8f.fn-active-7ef3 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.accent_gas_e678 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .accent_gas_e678 {
        display: flex;
    }
}

/* Mobile Register Button */
.caption-6a51 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .caption-6a51 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.fresh-f006 {
    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;
}

.fresh-f006::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 */
.steel-52a4 {
    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) {
    .steel-52a4 {
        display: none;
    }
}

.steel-52a4 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.steel-52a4.fn-active-7ef3 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.steel-52a4.fn-active-7ef3 span:nth-child(2) {
    opacity: 0;
}

.steel-52a4.fn-active-7ef3 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.overlay_9c02 {
    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;
}

.overlay_9c02.fn-active-7ef3 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.fluid-2d71 {
    overflow: hidden;
}

.header_thick_eb22 {
    list-style: none;
    padding: 0.75rem 0;
}

.basic-730e {
    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;
}

.basic-730e:hover,
.basic-730e.fn-active-7ef3 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.basic-730e.row_4446 {
    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;
}

.basic-730e.row_4446::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 */
.message_5a0b {
    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;
}

.button_adf7 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.button_adf7:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.next-bcb1 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.next-bcb1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.main_last_fb52 {
    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;
}

.main_last_fb52:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.tooltip-tall-78c3 {
    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;
}

.tertiary-narrow-576f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.tertiary-narrow-576f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.primary_silver_6851 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.primary_silver_6851:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.heading-ff99 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.heading-ff99: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);
}

.dropdown_last_c829 {
    font-size: 1em;
    font-weight: 700;
}

.preview_steel_c1be {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.green-eb5d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.green-eb5d::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;
}

.content_9f2d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .content_9f2d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outline_1bce {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.focus-active-9539 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.info_184b {
    margin-bottom: 2rem;
}

.fresh_0151 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fresh_0151 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-bright-caed {
    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);
}

.bright_f196 {
    font-size: 1.5rem;
}

.chip-3477 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pagination-first-889f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.red_ff84 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.red_ff84:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.mask-63b4 {
    text-align: center;
    margin-bottom: 3rem;
}

.tag-pink-5ef6 {
    margin-bottom: 1rem;
}

.active-ffb0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.shade_e1b5 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .shade_e1b5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .shade_e1b5.list-action-49ee {
        direction: rtl;
    }
    
    .shade_e1b5.list-action-49ee > * {
        direction: ltr;
    }
}

.south_ab56 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.south_ab56:first-child {
    margin-top: 0;
}

.hidden-narrow-ee43 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.new-4293 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.new-4293:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.outer-9bf2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer-9bf2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_outer_a628 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.menu_ad3b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.widget-thick-c235 {
    list-style: none;
}

.widget-thick-c235 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-thick-c235 li:last-child {
    border-bottom: none;
}

/* Games Features */
.background-594a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.heading_f20e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.steel_bc57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.center-394a {
    margin: 2rem 0;
}

.box-solid-460e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.focused-4ef6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.component_b8d9 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.main-upper-40c5 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.narrow_190c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_190c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex-8995 {
    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);
}

.complex-8995:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title-caa1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card_soft_196e {
    font-size: 1.5rem;
}

.active_next_9d68 {
    color: var(--accent-color);
    margin: 0;
}

.picture_full_c5c6 {
    list-style: none;
}

.picture_full_c5c6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture_full_c5c6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.table-5c21 {
    margin: 2rem 0;
}

.paragraph-tiny-6abe {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.light-e607 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .light-e607 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-e52b {
    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);
}

.tall_55c9 {
    font-size: 1.25rem;
}

.label_full_9bd7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.avatar_41be,
.hover-3471 {
    text-align: center;
    margin: 2rem 0;
}

.chip-bronze-ce72,
.header-smooth-f000 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.message_medium_f6d2 {
    margin: 2rem 0;
    text-align: center;
}

.secondary-slow-3be6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secondary-slow-3be6::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;
}

.center_84ed {
    position: relative;
    z-index: 1;
}

.heading_b21f {
    margin-bottom: 1rem;
}

.banner-bright-bf6f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cold_8f94 {
    margin-bottom: 3rem;
}

.table_dd44 {
    margin-top: 3rem;
}

.card-d638 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card-d638 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-d638 .button-bright-caed {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary-4034 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-next-ae5b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.filter-c1f2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.old_f1f6 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .old_f1f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old_f1f6 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.next_2579 {
    margin-bottom: 1rem;
}

.footer-f83e img {
    margin-bottom: 1rem;
}

.module-d5f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_fd50 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.carousel-a01d {
    list-style: none;
}

.carousel-a01d li {
    margin-bottom: 0.5rem;
}

.carousel-a01d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.carousel-a01d a:hover {
    color: var(--accent-color);
}

.active-b483 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-0bbd {
    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);
}

.current-0bbd:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.west-a2f3 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.west-a2f3 p {
    margin-bottom: 0.25rem;
}

.fluid-6ad7 {
    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) {
    .fluid-6ad7 {
        flex-direction: row;
    }
}

.preview_stale_e163 {
    text-align: center;
}

@media (min-width: 768px) {
    .preview_stale_e163 {
        text-align: left;
    }
}

.preview_stale_e163 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary_fresh_2330 {
    font-size: 0.75rem !important;
}

.main-short-8ed0 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.middle_6cd6 {
    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);
    }
}

.pink-99ab {
    animation: fadeInUp 0.6s ease-out;
}

.column-774f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.preview-center-8539 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-center-8539 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.brown-5e7a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .brown-5e7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_narrow_2b0f {
    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);
}

.component_narrow_2b0f .steel_bc57 {
    font-size: 1.25rem;
}

.component_narrow_2b0f .list_active_f1c2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.slider-motion-87a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slider-motion-87a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow_92a8 {
    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);
}

.narrow_92a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_plasma_4333 {
    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);
}

.accordion_soft_8e2b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.block-d577 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-soft-cbf6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-in-52d4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-in-52d4 .progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-in-52d4 .backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_7c51 {
    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);
}

.last_b586 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.last_b586 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.last_b586 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.accordion-large-a310 {
    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);
}

.aside_old_6a0e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-dark-f309 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-dark-f309 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card-dark-f309 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);
}

.card-dark-f309 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.card-dark-f309 input::placeholder {
    color: var(--text-muted);
}

.title_8f06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dirty_299a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.dirty_299a input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.link-7c04 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.link-7c04:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.light-e607 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-e607 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-e52b {
    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);
}

.brown-e52b .tall_55c9 {
    font-size: 1.25rem;
}

.brown-e52b .label_full_9bd7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.video_action_4ea2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-c43c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slider-c43c .steel_bc57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-c43c .progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-c43c .backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink-6ec6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-motion-254b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.text-motion-254b .dark-580f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-motion-254b .widget-soft-776b {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_plasma_56b3 {
    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-593f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .action-593f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-8f2a {
    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);
}

.bronze-8f2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-warm-2093 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.layout-5d0a {
    flex: 1;
}

.caption_old_e2e7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary-black-2a9a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card_top_a33a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.card_top_a33a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.huge-df40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .huge-df40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_2194 {
    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);
}

.steel_2194:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink-d9ee {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_f9e9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-pro-52e3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.caption_orange_44c9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wood_8c8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_9c51 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-5c6a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm-5c6a .content-4c44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-5c6a .frame-5d09 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-hard-586a {
    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);
}

.grid_pressed_648d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_mini_3149 {
    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);
}

.table_mini_3149 .steel_bc57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_mini_3149 .progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table_mini_3149 .backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-dynamic-5f35 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-dynamic-5f35 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma-83fa {
    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);
}

.plasma-83fa:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.first_5548 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_5548 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_c5b6 {
    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);
}

.feature_c5b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-cd0a {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused_1b54 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused-4ef6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.lite-8dbc {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.medium_ecc4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_out_b9d6 {
    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);
}

.tabs_out_b9d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-78bd {
    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);
}

.smooth_1676 {
    flex: 1;
}

.mask-up-6797 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.header-dark-d102 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tooltip_thick_d1d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_f39a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-old-d819 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-old-d819 .dark-580f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-old-d819 .widget-soft-776b {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-3471 {
    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);
}

.lite_1b99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite_1b99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.easy_e180 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_e180 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_f64b {
    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);
}

.button_f64b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_fixed_d4ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed_d796 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active_huge_1346 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.photo-09f2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focused-854e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-upper-87e7 {
    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);
}

.red_f7c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast-2069 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop-clean-31d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_pressed_648d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_mini_3149 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.table_mini_3149 .progress-dynamic-5e17 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_mini_3149 .backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-396d {
    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);
}

.narrow-664d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .narrow-664d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .narrow-664d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_3423 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask_3423:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_right_6714 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.label-large-3c5a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.first-7167 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.paragraph_a8d4 {
    padding: 1.5rem;
}

.menu_next_7113 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tabs-1b27 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-1b27 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;
}

.tabs-1b27 li:last-child {
    border-bottom: none;
}

.tabs-1b27 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.chip-green-6088 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-green-6088 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_8400 {
    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);
}

.action_8400:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_white_e131 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-2f10 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.media-slow-1072 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block_focused_e09d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.orange_d6ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_8437 {
    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);
}

.preview-fccb {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-dd07 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_in_20d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_current_a849 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview_left_0065 {
    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);
}

.rough_e509 {
    text-align: center;
}

.dim_3f62 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cold-382a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-basic-74c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-basic-74c5 .progress-dynamic-5e17 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-basic-74c5 .backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-4dc1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .prev-4dc1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prev-4dc1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_ab00 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pagination_ab00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth-0d54 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-8e6a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress-dynamic-5e17 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hard_a2ab {
    padding: 1.5rem;
}

.backdrop_6bcf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.silver_ba6c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver_ba6c 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;
}

.silver_ba6c li:last-child {
    border-bottom: none;
}

.silver_ba6c li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.filter-0cc6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.text_d77f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text_d77f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-f456 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-old-7efd {
    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);
}

.pattern_plasma_4333 {
    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;
}

.accordion_soft_8e2b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-d577 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-54b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action_9bf5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.surface_8189 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.purple_e434 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.label_purple_b23d {
    display: flex;
    gap: 1rem;
}

.label_purple_b23d .under-4460 {
    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;
}

.wide_22ed {
    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);
}

.disabled_0ec7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container-a39e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-a39e 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;
}

.container-a39e li:last-child {
    border-bottom: none;
}

.container-a39e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.avatar_motion_84e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar_motion_84e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar_motion_84e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-e1ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.brown-e1ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-plasma-8b0c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern-9177 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.content-4c44 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.container_outer_625e {
    font-size: 1rem;
}

.box_mini_c06f {
    padding: 1.5rem;
}

.frame-5d09 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tabs-dynamic-fe41 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tabs-dynamic-fe41 .rough_e509 {
    text-align: center;
}

.tabs-dynamic-fe41 .hero_huge_9a4a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tabs-dynamic-fe41 .footer_7f2b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.paper_c029 {
    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);
}

.paper_c029:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.accent_ae98 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_ae98 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_warm_2ec0 {
    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);
}

.heading_warm_2ec0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-f62a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_313a {
    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);
}

.notice-4253 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dynamic-2044 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.basic-cef3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_200d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.input_c11f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-glass-05ed {
    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);
}

.label-narrow-ce64 {
    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;
}

.label-narrow-ce64.form_cool_b116 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.label-narrow-ce64.layout-tiny-4753 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.label-narrow-ce64.chip_orange_8858 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.label-narrow-ce64.accent_b98a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.label-narrow-ce64.overlay_6f3a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.in_259c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-dd03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_34e1 {
    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);
}

.banner_ef15 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pink-6ec6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink-6ec6 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;
}

.pink-6ec6 li:last-child {
    border-bottom: none;
}

.pink-6ec6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.static-ea35 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .static-ea35 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static-ea35 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-5157 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask-5157:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-5157.media_c759 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .mask-5157.media_c759 {
        grid-column: span 3;
    }
}

.block-a8d9 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.mask-5157.media_c759 .block-a8d9 {
    background: rgba(6, 182, 212, 0.1);
}

.hard_e060 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.down_f2a5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.mask-5157.media_c759 .down_f2a5 {
    color: var(--info-color);
}

.form-bd70 {
    padding: 1.5rem;
    text-align: center;
}

.left-128e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.mask-5157.media_c759 .left-128e {
    color: var(--info-color);
}

.thumbnail-orange-05b2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fast_5b06 {
    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 */
.outline_1616 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_1616 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_clean_d474 {
    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);
}

.hidden_clean_d474:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-c7a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-c43c {
    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);
}

.tall_55c9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-02c9 {
    flex: 1;
}

.paragraph-tiny-6abe {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paper-4c26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-e0ff {
    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);
}

.header-thick-2b68 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.article_1aba {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.middle_6cd6 {
    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);
}

.paragraph-963e {
  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);
}

.paragraph-963e .rough_e509 {
    text-align: center;
}

.paragraph-963e .dim_3f62 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.paragraph-963e .hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-next-d3cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-9773 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass-8e5c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-67e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_light_474f {
    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);
}

.feature-cool-dcdf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main_fcc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-hot-e93f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .search-hot-e93f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-hot-e93f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_12c3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row_12c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-lower-dbcc {
    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);
}

.pattern-30a5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thumbnail-rough-e2b6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.top_b69f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top_b69f.preview_4b5d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.top_b69f.detail_c3b7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.top_b69f.outline-prev-0620 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.component_center_abdc {
    padding: 1.5rem;
    text-align: center;
}

.aside-stale-4e9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion_complex_0e0a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accordion_complex_0e0a .cool_2927 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.under_e510 {
    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);
}

.under_e510:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.icon_59b6 {
  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);
}

.card_e1d3 {
    text-align: center;
}

.card_e1d3 .dim_3f62 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.card_e1d3 .hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.shade_d7cc { text-align: center; }
.blue_269e { text-align: left; }
.new_d065 { text-align: right; }

.short-6f6c { margin-bottom: 0; }
.notification_a6da { margin-bottom: 0.5rem; }
.tall_fd10 { margin-bottom: 1rem; }
.caption-ddbd { margin-bottom: 1.5rem; }
.sort_pink_895b { margin-bottom: 2rem; }

.wide_b174 { margin-top: 0; }
.over_6156 { margin-top: 0.5rem; }
.warm-48e8 { margin-top: 1rem; }
.yellow-d0ee { margin-top: 1.5rem; }
.picture-fluid-685c { margin-top: 2rem; }

.fn-hidden-7ef3 { display: none; }
.fn-visible-7ef3 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .green-eb5d {
        padding: 6rem 0 3rem;
    }
    
    .content_9f2d {
        text-align: center;
    }
    
    .shade_e1b5 {
        text-align: center;
    }
    
    .fresh_0151 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .video_cool_2d24,
    .overlay_9c02,
    .secondary-slow-3be6,
    .filter-c1f2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .green-eb5d {
        background: none;
    }
}

/* Providers Section */
.background_10a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_9018 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_9018 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static_9018 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-81ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component-81ea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lower-fcc0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.over_37d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.table-5b44 {
    list-style: none;
    padding: 0;
}

.table-5b44 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.table-5b44 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.grid-86f1 {
    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);
}

.grid-86f1 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.focus_6236 {
    padding: var(--section-padding);
}

.bottom-f66b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-f66b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-1f4b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border-1f4b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.small-56e2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.section-orange-6d1d {
    display: flex;
    flex-direction: column;
}

.texture_4b27 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.frame-300b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.icon-5920 {
    color: var(--accent-color);
}

.selected-ab46 {
    font-size: 1.25rem;
}

.shade_bc18 {
    margin-bottom: 1rem;
}

.shade_bc18 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.solid_fa30 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.surface_huge_2c09 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.rough_e509 {
    text-align: center;
}

.dim_3f62 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.fixed_8a68 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-0f12 {
    margin: 2rem 0;
}

.item_iron_e6d3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.item_iron_e6d3 .steel_bc57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-8ea8 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.article_silver_6b39 {
    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;
}

.article_silver_6b39:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview-c91c {
    font-size: 2rem;
}

.rough_0b8e {
    display: flex;
    flex-direction: column;
}

.media_52f8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bronze_8954 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.tooltip_a3ce {
    padding: var(--section-padding);
}

.lower-0450 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .lower-0450 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lower-0450 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-8974 {
    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);
}

.sidebar-8974:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar-8974 .dim_3f62 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sidebar-8974 .hero_huge_9a4a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sidebar-8974 .white-14d7 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.hard_5958 {
    margin-top: 4rem;
}

.text_b8f0 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.button-orange-17e8 {
    overflow-x: auto;
}

.glass_b4db {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.glass_b4db thead {
    background: var(--accent-color);
}

.glass_b4db th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.glass_b4db td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_b4db tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.glass_b4db tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.outline_bdaa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold-e9e9 {
    max-width: 900px;
    margin: 0 auto;
}

.hard_0e4a {
    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);
}

.hard_0e4a:hover {
    border-color: var(--accent-color);
}

.middle-616d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.middle-616d h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.row-active-711b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hard_0e4a.fn-active-7ef3 .row-active-711b {
    transform: rotate(45deg);
}

.simple-61db {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hard_0e4a.fn-active-7ef3 .simple-61db {
    max-height: 1000px;
}

.simple-61db p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.title_smooth_006a {
    padding: var(--section-padding);
}

.last_b586 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.pattern-down-aa8c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_focused_cc3b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_focused_cc3b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last-63f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_68c5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.surface_dark_7e77 {
    font-size: 2rem;
}

.advanced-ea34 {
    color: var(--text-white);
    margin: 0;
}

.hovered_7887 {
    list-style: none;
    padding: 0;
}

.hovered_7887 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered_7887 li:last-child {
    border-bottom: none;
}

.tertiary-e743 {
    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);
}

.tertiary-e743 p {
    color: var(--success-color);
    margin: 0;
}

.active-solid-b06f {
    margin-top: 3rem;
}

.disabled_0ec7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.filter_brown_f593 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter_brown_f593 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion-gas-c084 {
    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);
}

.first_e77e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accordion-gas-c084 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tall-ba29 {
    padding: var(--section-padding);
}

.pressed-6e4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-6e4c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-afab {
    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-afab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.surface-bef6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.north_3ef0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.west-8234 {
    flex: 1;
}

.smooth-304a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.short_6a9e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.paragraph_23f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-d70d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yellow-d70d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.grid-b8e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tertiary-stale-335b {
    padding: var(--section-padding);
}

.full_a018 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.highlight-f87a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-f87a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up-2f5f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-cf20, .slider_wood_290a, .modal_0bf1 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.modal_0bf1 {
    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 */
.down_ce6f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_next_840d {
    margin: 2rem 0;
}

.input-b310 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_9bc4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shadow_soft_d6c5 {
    list-style: none;
    padding: 0;
}

.shadow_soft_d6c5 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;
}

.shadow_soft_d6c5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.shadow_soft_d6c5 li:last-child {
    border-bottom: none;
}

.focus-ee2e {
    text-align: center;
    margin-top: 2rem;
}

.search-88bf {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.wrapper_liquid_1f79 {
    padding: var(--section-padding);
}

.warm_f7cb {
    margin: 2rem 0;
}

.picture_dark_3fff {
    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) {
    .picture_dark_3fff {
        flex-direction: column;
        align-items: flex-start;
    }
}

.picture_dark_3fff:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_center_8682 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.first-4794 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.progress-4f52 {
    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;
}

.copper_841d {
    flex: 1;
}

.liquid-ca6b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.stone-91f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.solid-2270 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.text-white-4cfc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .text-white-4cfc {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.out-54aa {
    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);
}

.out-54aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.out-54aa .dim_3f62 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.out-54aa .hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 1rem;
}

.heading_cdaf {
    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);
}

.grid_9bc8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.grid_9bc8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.video-wood-c0e7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .video-wood-c0e7 {
        grid-template-columns: 1fr 1fr;
    }
}

.red-efc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-117b {
    margin-bottom: 1.5rem;
}

.picture-117b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.picture-117b input,
.picture-117b 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;
}

.picture-117b input:focus,
.picture-117b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.column_ab29 {
    width: 100%;
    margin-top: 1rem;
}

.light_dad7 {
    display: flex;
    align-items: center;
}

.gradient-1651 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.lite_950d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tall-b59e {
    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;
}

.section_focused_e559 {
    color: var(--text-gray);
}

.top_51d9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.secondary_af63 {
    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);
}

.secondary_af63 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.fixed-5f26 {
    margin-top: 3rem;
}

.component-11b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.fresh-d25c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_bottom_81f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.label-wide-d327 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-wide-d327:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.dirty_6420 {
    padding: var(--section-padding);
}

.prev-a2bd {
    margin: 2rem 0;
}

.dim_3222 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.slow_549b {
    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;
}

.slow_549b:hover, .slow_549b.fn-active-7ef3 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.up-a3c5 {
    display: none;
}

.up-a3c5.fn-active-7ef3 {
    display: block;
}

.search_left_ad76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_up_fe97 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list_93de h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.list_93de ul {
    list-style: none;
    padding: 0;
}

.list_93de ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.list_93de ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.panel_up_460e {
    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 */
.progress_hard_4ddd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-9e0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_old_34b5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.module_pressed_bec0 {
    color: var(--accent-color);
    margin: 0;
}

.status-hovered-fc80 {
    display: flex;
    gap: 1.5rem;
}

.thick-f8ef {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.static_d593 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.dynamic_1986 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.dynamic_1986.steel-ceb0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dynamic_1986.modal-25ef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.dynamic_1986.banner_db3b {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.shade_8185 {
    margin-top: 2rem;
}

.background-b265 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border_action_68b7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .border_action_68b7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft-6eb9 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.list-paper-b3a7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.secondary_basic_d77c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.caption_slow_c746 {
    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 */
.easy_7443 {
    padding: var(--section-padding);
}

.preview_685c {
    margin: 2rem 0;
}

.new-b09b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.tabs-short-e1b8 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.fast_a558 {
    list-style: none;
    padding: 0;
}

.fast_a558 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;
}

.fast_a558 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.fast_a558 li:last-child {
    border-bottom: none;
}

.filter-fixed-02fc {
    margin: 2rem 0;
}

.module-49d5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.upper_605f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .upper_605f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort-fixed-bd87 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_cf18 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail_east_970e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.large_64c1 {
    margin-top: 2rem;
}

.caption_old_e2e7 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.background-dark-d7b5 {
    list-style: none;
    padding: 0;
}

.sort_green_f326 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.sort_green_f326 a {
    color: var(--accent-color);
    text-decoration: none;
}

.sort_green_f326 a:hover {
    text-decoration: underline;
}

.slider_e2a1 {
    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 */
.outer-269e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-77d0 {
    margin: 2rem 0;
}

.carousel-stone-a850 {
    margin-bottom: 3rem;
}

.carousel-stone-a850 .button_9bc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rough-0a6b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.progress-c2be {
    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);
}

.progress-c2be:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.lite_7352 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .lite_7352 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_63b9 {
    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 */
.notification_0dba {
    padding: var(--section-padding);
}

.layout-8e0c {
    margin: 2rem 0;
}

.plasma_a196 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern_fresh_f894 {
    overflow-x: auto;
    margin: 2rem 0;
}

.list_bf39 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.notice-yellow-a5d0 {
    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;
}

.section_pro_c069 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.thumbnail-1f94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .thumbnail-1f94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_old_0bf0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_old_0bf0 .steel_bc57 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.link_old_0bf0 .progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rough_7358 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.narrow_996c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_8b69 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_8b69 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_8913 {
    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;
}

.dim_8913:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pagination-south-49ab {
    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);
}

.module-top-3d85 {
    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;
}

.tertiary-d69b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface_a844 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.secondary_ef73 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.primary-right-4d97 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-bronze-822d {
    color: var(--text-white);
    font-weight: 600;
}

.message_9fb6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.banner-58e6 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-58e6 .under-4460 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar-bottom-386d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-bottom-386d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_a0e5 {
    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);
}

.upper_a0e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.upper_a0e5 .dim_3f62 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.upper_a0e5 .hero_huge_9a4a {
    color: var(--text-gray);
    font-size: 1rem;
}

.silver-4443 {
    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);
}

.stone-56f2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stone-56f2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.focused-854e {
    margin: 2rem 0;
}

.description-upper-87e7 {
    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);
}

.description-upper-87e7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.red_f7c6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.basic-f486 {
    flex: 1;
}

.fast-2069 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop-clean-31d7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.grid_pressed_648d {
    margin: 2rem 0;
}

.table_mini_3149 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_mini_3149 .progress-dynamic-5e17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.table_mini_3149 .backdrop_6bcf {
    color: var(--text-gray);
    margin: 0;
}

.element-396d {
    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);
}

.element-396d .chip-bronze-ce72 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.rough_7358 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.bright-78bd {
    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;
}

.smooth_1676 {
    flex: 1;
}

.header-dark-d102 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tooltip_thick_d1d7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.pattern_plasma_4333 {
    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;
}

.video_yellow_f713 {
    flex: 1;
}

.accordion_soft_8e2b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.block-d577 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.surface_8189 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.purple_e434 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.label_purple_b23d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.label_purple_b23d .under-4460 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wide_22ed {
    margin-top: 2rem;
}

.wide_22ed .disabled_0ec7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.caption_4bc1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_left_0065 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview_left_0065 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_left_0065 .rough_e509 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-382a {
    margin: 2rem 0;
}

.photo-basic-74c5 {
    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 */
.nav_78e1 {
    padding: var(--section-padding);
}

.hard_a2ab {
    margin-top: 1rem;
}

.silver_ba6c {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.silver_ba6c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.silver_ba6c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.paper_d624 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-plasma-248a {
    margin: 2rem 0;
}

.secondary_7510 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.under-e7c1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-d2f6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.paragraph-full-2cf2 {
    margin: 2rem 0;
}

.progress-0e26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.progress-0e26 .button_9bc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.solid_4644 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .solid_4644 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table_fresh_9923 {
    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);
}

.mask_north_3dcb {
    color: var(--text-white);
    font-weight: 600;
}

.title_f63a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.detail-226a {
    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);
}

.detail-226a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.focus_east_0096 {
    padding: var(--section-padding);
}

.row_e488 {
    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;
}

.row_e488:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.wide-d646 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wide-d646 .first_e77e {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-d646 .backdrop_dark_df66 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.complex_ca42 {
    flex: 1;
}

.carousel-915b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup_outer_2dd9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_outer_2dd9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.popup_outer_2dd9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.heading_over_5676 {
    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);
}

.heading_over_5676 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.heading_over_5676 strong {
    color: var(--warning-color);
}

/* Slots Section */
.border-next-3968 {
    padding: var(--section-padding);
}

.wood_8c8d {
    margin: 2rem 0;
}

/* Table Games Section */
.outline_prev_fb5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_9c51 {
    margin: 2rem 0;
}

.warm-5c6a {
    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);
}

.warm-5c6a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.warm-5c6a .content-4c44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-5c6a .frame-5d09 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.backdrop-hard-586a {
    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);
}

.backdrop-hard-586a .chip-bronze-ce72 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.center_9879 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_short_1d81 {
    margin: 2rem 0;
}

.complex_dbf5 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-aa54 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_db37 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_fe6d {
    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);
}

.footer_fe6d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer_fe6d.fn-active-7ef3 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-static-7d2f {
    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);
}

.gradient-f042 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient-f042 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.selected_65b1 {
    padding: var(--section-padding);
}

.last-39a0 {
    margin: 2rem 0;
}

.dropdown_first_addb {
    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);
}

.dropdown_first_addb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .dropdown_first_addb {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hovered-9ced {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.main_7851 {
    flex: 1;
}

.dropdown-495e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.new-d51e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.component-598e {
    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;
}

.caption-action-cde4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.north_b3c0 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.panel-457c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag_active_b112 {
    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;
}

.tag_active_b112:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tertiary-bronze-e583 {
    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);
}

.sort_smooth_a257 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort_smooth_a257 strong {
    color: var(--accent-color);
}

/* New Games Section */
.slider-black-2596 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-2b38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden-2b38 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden-2b38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-d781 {
    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;
}

.dropdown-d781:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.backdrop_2c48 {
    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;
}

.message-clean-47ea {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.focus_dbe5 {
    font-size: 2rem;
}

.east-ebc9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.stone-d8b1 {
    flex: 1;
}

.north-618f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.header-red-d67d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.menu-tiny-23c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-1e04 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wrapper_in_6c9e {
    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;
}

.bronze_26c9 {
    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;
}

.bronze_26c9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.border-action-1f5d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-ad10 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south-ff17 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .south-ff17 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_fast_d7a7 {
    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);
}

.pagination_first_44e2 {
    color: var(--text-white);
    font-weight: 600;
}

.north_66f5 {
    color: var(--accent-color);
    font-weight: 600;
}

.hard-a8fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hard-a8fe strong {
    color: var(--accent-color);
}

/* Security Section */
.wrapper_2bb2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.disabled-stale-9d47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.section_dynamic_8456 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.accent_paper_d55c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_ac18 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.form_26b1 {
    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) {
    .form_26b1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.form_26b1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.form_26b1 .pattern_plasma_4333 {
    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;
}

.form_26b1 .video_yellow_f713 {
    flex: 1;
}

.form_26b1 .accordion_soft_8e2b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.form_26b1 .block-d577 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hover-a589 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-a589 .paragraph-tiny-6abe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover-a589 .video_action_4ea2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-a589 .video_action_4ea2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hover-a589 .video_action_4ea2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.focus-91a1 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.mini_b0a4 {
    padding: var(--section-padding);
}

.dropdown_west_d16c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .dropdown_west_d16c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-gas-ab29 {
    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);
}

.input-gas-ab29:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.input-gas-ab29 .iron_93c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input-gas-ab29 .paragraph_d9f7 {
    flex: 1;
}

.input-gas-ab29 .dark-580f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input-gas-ab29 .menu-c9a1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gradient-2b0f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-2b0f .gradient-green-e955 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-2b0f .stale_f56f {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.gradient-2b0f .stale_f56f 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);
}

.gradient-2b0f .stale_f56f li:last-child {
    border-bottom: none;
}

.gradient-2b0f .stale_f56f 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;
}

.gradient-2b0f .stale_f56f li strong {
    color: var(--text-white);
}

.gas-009a {
    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);
}

.gas-009a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gas-009a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hovered-2972 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-699e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search-699e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview_medium_6706 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview_medium_6706:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.status_e45a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rough_fb9c {
    font-size: 2rem;
}

.item_hard_82dd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture-active-4f88 {
    flex: 1;
}

.left-3db6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-3db6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.left-3db6 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.clean-4397 {
    margin-top: 3rem;
}

.new-b09b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tabs-short-e1b8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast_a558 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast_a558 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fast_a558 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fast_a558 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.summary_gas_9a8a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-a4f3 {
    margin: 2rem 0;
}

.image-3ea5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.image-3ea5 .button_9bc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_stale_5c23 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .backdrop_stale_5c23 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert_north_3ce0 {
    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);
}

.alert_north_3ce0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.gas-42e0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.static-53d2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.green_9743 {
    padding: var(--section-padding);
}

.west_35e5 {
    margin: 2rem 0;
}

.right_f2b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .right_f2b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right_f2b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_c0c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_c0c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.first_7699 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-0ff6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.block-large-31a6 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.block-large-31a6.notification-4d90 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gold_1533 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.dark-4e56 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.table-next-1995 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column_8e0e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_large_3bb0 {
    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);
}

.picture_large_3bb0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture_large_3bb0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.shade_259f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-hovered-55ed {
    margin: 2rem 0;
}

.message_05e9 {
    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) {
    .message_05e9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.message_05e9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_05e9::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);
}

.lite-9aef {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.gradient_static_8979 {
    flex: 1;
}

.block_f990 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accent_hard_4c93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent_hard_4c93 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-82f5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description_f685 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb-3085 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .breadcrumb-3085 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large-39e4 {
    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);
}

.paragraph_center_b2be {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tertiary-77d0 {
    flex: 1;
}

.logo-b1ce {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.large_91ee {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.first-3387 {
    margin-top: 2rem;
    text-align: center;
}

.secondary_8474 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary_8474 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.accent_ae98 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_ae98 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_warm_2ec0 {
    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);
}

.heading_warm_2ec0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_warm_2ec0 .sidebar_white_e131 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_warm_2ec0 .active-2f10 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.heading_warm_2ec0 .media-slow-1072 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.heading_warm_2ec0 .block_focused_e09d {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.shade-rough-9812 {
    padding: var(--section-padding);
}

.breadcrumb_313a .old_e14e {
    flex: 1;
}

/* Promo Calendar Section */
.gallery_fast_a2af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-pressed-bf2f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-pressed-bf2f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_eb8e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_3682 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.chip-lower-c7b1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outer-c921 {
    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);
}

.motion-fb71 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.container_outer_3a89 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.item-6bed {
    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);
}

.item-6bed p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item-6bed strong {
    color: var(--accent-color);
}

/* Requirements Section */
.popup_dim_5a8e {
    padding: var(--section-padding);
}

.brown_47b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .brown_47b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary_motion_fa03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-fe05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next_b4f9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_b4f9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-1359 {
    margin-top: 3rem;
}

.thumbnail-1359 .new-b09b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.thumbnail-1359 .tabs-short-e1b8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail-1359 .fast_a558 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.thumbnail-1359 .fast_a558 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.thumbnail-1359 .fast_a558 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.thumbnail-1359 .fast_a558 li strong {
    color: var(--warning-color);
}

.small_e5b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_e5b4 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.bottom-b502 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-orange-8b5c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-orange-8b5c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_solid_9055 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_solid_9055 .button_9bc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.east_60c2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hovered-a37e {
    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);
}

.hovered-a37e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.content_3fc5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_hard_9bf6 {
    flex: 1;
}

.wide_13c3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.glass-e802 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.link_plasma_1915 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.card-3c10 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.iron-6178 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .iron-6178 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-prev-900b {
    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);
}

.tag-prev-900b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.simple-7ca0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red-6c27 {
    color: var(--text-gray);
    font-size: 1rem;
}

.grid_9bc8 {
    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);
}

.popup_4e73 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.popup_4e73 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.slow-7dfa { 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; }
.red_ff84, .new-4293 { max-width:100%; height:auto; }

.message_5a0b, .main_last_fb52, .tooltip-tall-78c3 { white-space:normal; }

.content_9f2d,
.shade_e1b5,
.outline_1616,
.accent_ae98,
.grid_pressed_648d,
.search-hot-e93f {
  flex-wrap:wrap;
}

[class*="grid"],
.iron-6178,
.right_f2b1,
.card-d638 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.green-eb5d img,
.shade_e1b5 img,
.pagination-first-889f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outline_1bce, .focus-active-9539,
.tag-pink-5ef6, .active-ffb0 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.button-orange-17e8 { width:100%; overflow-x:auto; }
.button-orange-17e8 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.static_9018 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .static_9018 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.component-81ea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.lower-0450,
.border_3d8f,
.search-bad9,
.feature_soft_8468,
.text-white-4cfc,
.iron-6178,
.right_f2b1,
.card-d638,
.icon_59b6,
.last-39a0,
.static_9018 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .lower-0450,
  .border_3d8f,
  .search-bad9,
  .feature_soft_8468,
  .text-white-4cfc,
  .iron-6178,
  .right_f2b1,
  .card-d638,
  .icon_59b6,
  .last-39a0,
  .static_9018 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sidebar-8974,
.out-54aa,
.tag-prev-900b,
.button-bright-caed,
.last_c0c0,
.card_e1d3,
.dropdown_first_addb,
.component-81ea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.box_current_b6e4,
.avatar_826b,
.wrapper_9d1b {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.box_current_b6e4 > *,
.avatar_826b > *,
.wrapper_9d1b > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e04f */
.ghost-box-b9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
