/* {$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;
}

.button-fb32 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.copper-63cf {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .copper-63cf {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .copper-63cf {
        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 */
.gallery_fast_1564 {
    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);
}

.brown_97fb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .brown_97fb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .video-17ca {
        grid-column: 1;
    }
    
    .title-tall-f4fa {
        grid-column: 2;
    }
    
    .frame-1c1f {
        grid-column: 3;
    }
}

.video-17ca img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.video-17ca:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hard_ffca {
    display: none;
}

@media (min-width: 1024px) {
    .hard_ffca {
        display: block;
    }
}

/* Grouped Navigation */
.main-dirty-f6b6 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.paragraph_short_9d39 {
    position: relative;
}

.hot-32ac {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.paragraph_short_9d39 .stale-1d1c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.stale-1d1c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid_upper_6e20 {
    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;
}

.grid_upper_6e20:hover,
.grid_upper_6e20.fn-active-61af {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.new-e420 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .new-e420 {
        display: flex;
    }
}

/* Mobile Register Button */
.title-tall-f4fa {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .title-tall-f4fa {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.header_iron_7d52 {
    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;
}

.header_iron_7d52::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 */
.frame-1c1f {
    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) {
    .frame-1c1f {
        display: none;
    }
}

.frame-1c1f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.frame-1c1f.fn-active-61af span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.frame-1c1f.fn-active-61af span:nth-child(2) {
    opacity: 0;
}

.frame-1c1f.fn-active-61af span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.warm-8510 {
    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;
}

.warm-8510.fn-active-61af {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.stale_89e6 {
    overflow: hidden;
}

.banner-b930 {
    list-style: none;
    padding: 0.75rem 0;
}

.form-hot-4214 {
    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;
}

.form-hot-4214:hover,
.form-hot-4214.fn-active-61af {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.form-hot-4214.image_medium_c54a {
    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;
}

.form-hot-4214.image_medium_c54a::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 */
.gold_42c0 {
    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;
}

.message-old-7ca5 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.message-old-7ca5:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.secondary_6a11 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary_6a11:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.main_e5f2 {
    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_e5f2:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.hero_red_819c {
    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;
}

.white-565b {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.white-565b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.thick_5c32 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.thick_5c32:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.solid_99e9 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.solid_99e9: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);
}

.huge-c91d {
    font-size: 1em;
    font-weight: 700;
}

.primary-7a9c {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.list_action_c82c {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.list_action_c82c::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;
}

.mask-4039 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .mask-4039 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.highlight_0392 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dropdown_c710 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.large_2e46 {
    margin-bottom: 2rem;
}

.carousel_f9bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel_f9bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption_30b0 {
    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);
}

.aside-e119 {
    font-size: 1.5rem;
}

.aside-7a7a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.feature-stale-07c3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.huge_d687 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.huge_d687:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.iron-1a7f {
    text-align: center;
    margin-bottom: 3rem;
}

.thumbnail-liquid-f0e1 {
    margin-bottom: 1rem;
}

.section-light-0104 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.summary-4259 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .summary-4259 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .summary-4259.green-237a {
        direction: rtl;
    }
    
    .summary-4259.green-237a > * {
        direction: ltr;
    }
}

.tiny_c356 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tiny_c356:first-child {
    margin-top: 0;
}

.hero_slow_4fe5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.iron-4112 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.iron-4112:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.description_tiny_2347 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_tiny_2347 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-plasma-5a5d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth_3a5e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.right_c269 {
    list-style: none;
}

.right_c269 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right_c269 li:last-child {
    border-bottom: none;
}

/* Games Features */
.block-hard-7045 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shadow_complex_19de {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.active-3ded {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.shadow_black_cc76 {
    margin: 2rem 0;
}

.primary-thick-6223 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.mini-ab68 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.east_a849 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.gas_a95c {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.thick_131e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_131e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-075f {
    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);
}

.menu-075f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.purple_882c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.description-19f1 {
    font-size: 1.5rem;
}

.badge_soft_173c {
    color: var(--accent-color);
    margin: 0;
}

.header-1d90 {
    list-style: none;
}

.header-1d90 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.header-1d90 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.fresh_6d0c {
    margin: 2rem 0;
}

.bright_c4d4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.short-318e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .short-318e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-db31 {
    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);
}

.breadcrumb_fresh_ecf4 {
    font-size: 1.25rem;
}

.header-a538 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.block-motion-286f,
.focused_7087 {
    text-align: center;
    margin: 2rem 0;
}

.rough-5a79,
.modal_next_9292 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.banner_slow_60d1 {
    margin: 2rem 0;
    text-align: center;
}

.summary-south-6eab {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summary-south-6eab::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;
}

.north_86d1 {
    position: relative;
    z-index: 1;
}

.last-7397 {
    margin-bottom: 1rem;
}

.new_178a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo-d046 {
    margin-bottom: 3rem;
}

.column_2439 {
    margin-top: 3rem;
}

.background-9418 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .background-9418 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-9418 .caption_30b0 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_ffb5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section_4a49 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.hero_hard_bf8b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.outline_099c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .outline_099c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline_099c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notification-brown-8b78 {
    margin-bottom: 1rem;
}

.hard-8ebf img {
    margin-bottom: 1rem;
}

.motion-c053 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-dim-b971 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.list-paper-578e {
    list-style: none;
}

.list-paper-578e li {
    margin-bottom: 0.5rem;
}

.list-paper-578e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.list-paper-578e a:hover {
    color: var(--accent-color);
}

.narrow_be72 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.table_0291 {
    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);
}

.table_0291:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.progress-4169 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.progress-4169 p {
    margin-bottom: 0.25rem;
}

.banner-easy-c162 {
    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) {
    .banner-easy-c162 {
        flex-direction: row;
    }
}

.hidden_2b39 {
    text-align: center;
}

@media (min-width: 768px) {
    .hidden_2b39 {
        text-align: left;
    }
}

.hidden_2b39 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.new_2541 {
    font-size: 0.75rem !important;
}

.dropdown-complex-b9a1 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.list-0028 {
    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);
    }
}

.status_light_7a5e {
    animation: fadeInUp 0.6s ease-out;
}

.hard_5d19 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.purple_bcf7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple_bcf7 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.tabs-da19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-da19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_f021 {
    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);
}

.center_f021 .active-3ded {
    font-size: 1.25rem;
}

.center_f021 .link_e8bd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary_current_f2b6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary_current_f2b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_pressed_3337 {
    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);
}

.tabs_pressed_3337:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-c4f8 {
    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);
}

.gas_1950 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stone-290b {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_basic_f680 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-754a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.right-754a .progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.right-754a .search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-1833 {
    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);
}

.left_b9bf {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.left_b9bf img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.left_b9bf img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hovered_a46d {
    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);
}

.popup_outer_55b7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner_c2a1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner_c2a1 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_c2a1 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);
}

.banner_c2a1 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.banner_c2a1 input::placeholder {
    color: var(--text-muted);
}

.input_hot_9a04 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline_0031 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.outline_0031 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.grid-silver-92e5 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.grid-silver-92e5:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.short-318e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-318e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-db31 {
    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);
}

.upper-db31 .breadcrumb_fresh_ecf4 {
    font-size: 1.25rem;
}

.upper-db31 .header-a538 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.input_full_86b3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_24ea {
    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);
}

.section_24ea .active-3ded {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_24ea .progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section_24ea .search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_c895 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_smooth_87df {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert_smooth_87df .message_b6f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert_smooth_87df .active_daaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium_2e45 {
    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);
}

.thumbnail_next_0680 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thumbnail_next_0680 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma-0333 {
    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);
}

.plasma-0333:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out-80de {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.description-yellow-d267 {
    flex: 1;
}

.prev_d79d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_13e6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logo_fixed_7cc1 {
    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);
}

.logo_fixed_7cc1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.list-01dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-01dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_top_2dc2 {
    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);
}

.accordion_top_2dc2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-slow-dc56 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-5b7a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input_4bab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic-68a8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border_f7e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-2863 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow-f7c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow-f7c5 .heading-534c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow-f7c5 .hidden_0bc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_8b22 {
    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);
}

.popup-0a39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-plasma-7669 {
    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);
}

.item-plasma-7669 .active-3ded {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-plasma-7669 .progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-plasma-7669 .search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_70b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_70b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-warm-af89 {
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--info-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.aside-warm-af89:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.grid-wood-ff52 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-wood-ff52 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-b4df {
    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);
}

.liquid-b4df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_hard_bfc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_advanced_e8bd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mini-ab68 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.column_dfab {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.stale_8708 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_e254 {
    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);
}

.center_e254:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper-f504 {
    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);
}

.basic-069d {
    flex: 1;
}

.banner_f649 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.carousel-bright-2833 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.banner-lower-8f73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-3ab3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-9cde {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-9cde .message_b6f3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-9cde .active_daaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_7087 {
    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);
}

.banner-inner-3229 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-inner-3229 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.primary-16ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-16ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.over-6914 {
    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);
}

.over-6914:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture_fresh_40e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-94db {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-084a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.paragraph-d046 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_72fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-south-4830 {
    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);
}

.article-fda1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_pressed_ee8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_small_f3c5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-0a39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-plasma-7669 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.item-plasma-7669 .progress_b5e5 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item-plasma-7669 .search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.new_a1b4 {
    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);
}

.popup-out-567a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup-out-567a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-out-567a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_5b17 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thumbnail_5b17:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-3c89 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.logo_slow_d786 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.description-prev-ae91 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.narrow-00bc {
    padding: 1.5rem;
}

.primary_right_9aef {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter_c5ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_c5ad 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;
}

.filter_c5ad li:last-child {
    border-bottom: none;
}

.filter_c5ad li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.icon-3680 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-3680 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-middle-acb8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-middle-acb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-0bba {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-dynamic-7772 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-bca9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.breadcrumb-center-c23b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.soft_d70b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot-40ae {
    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);
}

.footer-81c8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.light_c0b1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_1cf8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_cded {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-purple-3910 {
    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);
}

.container_green_7e77 {
    text-align: center;
}

.picture-6c35 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-2ebe {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gold-efa8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_solid_9bc5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_solid_9bc5 .progress_b5e5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_solid_9bc5 .search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-hard-9f4c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section-hard-9f4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-hard-9f4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-f7a2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hover-f7a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over_d25a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient-blue-a656 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_b5e5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.icon-orange-c8ab {
    padding: 1.5rem;
}

.search-31eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status_0d4e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_0d4e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.status_0d4e li:last-child {
    border-bottom: none;
}

.status_0d4e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.bottom-9a97 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.simple-9db0 {
    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);
}

.simple-9db0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_liquid_32ff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-center-f068 {
    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);
}

.description-c4f8 {
    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;
}

.gas_1950 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-290b {
    color: var(--text-gray);
    line-height: 1.6;
}

.red-9cd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_gold_5bd2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.rough_05c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hot-3bd1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hidden_13cb {
    display: flex;
    gap: 1rem;
}

.hidden_13cb .media_lower_7ab6 {
    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;
}

.box-bee7 {
    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);
}

.box-selected-505a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.component_selected_8c8b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component_selected_8c8b 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;
}

.component_selected_8c8b li:last-child {
    border-bottom: none;
}

.component_selected_8c8b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.grid_18ac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid_18ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_18ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron_571c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.iron_571c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_306b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.section-gas-2225 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.heading-534c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.green_6d2d {
    font-size: 1rem;
}

.info_d82b {
    padding: 1.5rem;
}

.hidden_0bc1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.secondary-south-0830 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.secondary-south-0830 .container_green_7e77 {
    text-align: center;
}

.secondary-south-0830 .tertiary-2ebe {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.secondary-south-0830 .overlay_060a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.layout-5fea {
    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);
}

.layout-5fea:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.shade-4c32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-4c32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-4765 {
    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);
}

.fluid-4765:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_be41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-a9bf {
    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);
}

.primary-832d {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-basic-e119 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old-675d {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-f690 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.message-233d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-black-099b {
    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);
}

.picture_1a15 {
    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;
}

.picture_1a15.action_8813 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.picture_1a15.card_e3c7 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.picture_1a15.pink-a39d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.picture_1a15.mask_prev_ad3b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.picture_1a15.steel-0425 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.container_cold_f8b1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_right_168d {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_small_c01e {
    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);
}

.badge-d2d6 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_c895 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_c895 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.active_c895 li:last-child {
    border-bottom: none;
}

.active_c895 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.pink_abd2 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pink_abd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pink_abd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_tiny_90ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.item_tiny_90ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_tiny_90ce.photo_b16c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .item_tiny_90ce.photo_b16c {
        grid-column: span 3;
    }
}

.sort_dim_1b60 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.item_tiny_90ce.photo_b16c .sort_dim_1b60 {
    background: rgba(6, 182, 212, 0.1);
}

.hot-3790 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.video-east-fc67 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.item_tiny_90ce.photo_b16c .video-east-fc67 {
    color: var(--info-color);
}

.new_e0d7 {
    padding: 1.5rem;
    text-align: center;
}

.module-dynamic-d7dc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.item_tiny_90ce.photo_b16c .module-dynamic-d7dc {
    color: var(--info-color);
}

.overlay_74a8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.popup_last_2d19 {
    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 */
.article-gas-31b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-gas-31b7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_7480 {
    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);
}

.chip_7480:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_up_1563 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_24ea {
    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);
}

.breadcrumb_fresh_ecf4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver_10d9 {
    flex: 1;
}

.bright_c4d4 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_25f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel-5d69 {
    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);
}

.green-c840 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture_7fd7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.list-0028 {
    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);
}

.image-9f77 {
  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);
}

.image-9f77 .container_green_7e77 {
    text-align: center;
}

.image-9f77 .picture-6c35 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.image-9f77 .tertiary-2ebe {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row-stale-e901 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down_58ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-hovered-1691 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.complex-b85e {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_narrow_708d {
    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);
}

.east_2e77 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_brown_81ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.top_8837 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .top_8837 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top_8837 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_selected_8007 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop_selected_8007:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_6d13 {
    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);
}

.bronze-3eeb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search_0ed6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.focused-d203 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.focused-d203.aside-fluid-8e69 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.focused-d203.dropdown-a352 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.focused-d203.focus-e9a2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.filter_1c33 {
    padding: 1.5rem;
    text-align: center;
}

.status_blue_a6f8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-copper-c5c1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.preview-copper-c5c1 .complex_f42d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.accent-4bf0 {
    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);
}

.accent-4bf0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wood-d6bd {
  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);
}

.pagination_easy_2d93 {
    text-align: center;
}

.pagination_easy_2d93 .picture-6c35 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.pagination_easy_2d93 .tertiary-2ebe {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.orange-8c86 { text-align: center; }
.short_f9cf { text-align: left; }
.video_simple_ded3 { text-align: right; }

.slider-a376 { margin-bottom: 0; }
.lower_e903 { margin-bottom: 0.5rem; }
.focused-a3ae { margin-bottom: 1rem; }
.item-steel-a018 { margin-bottom: 1.5rem; }
.hero_45f6 { margin-bottom: 2rem; }

.highlight_ee71 { margin-top: 0; }
.shadow_687b { margin-top: 0.5rem; }
.out_c019 { margin-top: 1rem; }
.banner-f7d6 { margin-top: 1.5rem; }
.paper_af68 { margin-top: 2rem; }

.fn-hidden-61af { display: none; }
.fn-visible-61af { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .list_action_c82c {
        padding: 6rem 0 3rem;
    }
    
    .mask-4039 {
        text-align: center;
    }
    
    .summary-4259 {
        text-align: center;
    }
    
    .carousel_f9bc {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .gallery_fast_1564,
    .warm-8510,
    .summary-south-6eab,
    .hero_hard_bf8b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .list_action_c82c {
        background: none;
    }
}

/* Providers Section */
.tiny-ff15 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid_2784 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_2784 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_2784 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black_e122 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.black_e122:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.solid-a9ca {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar_5a1d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paper_e3c4 {
    list-style: none;
    padding: 0;
}

.paper_e3c4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.paper_e3c4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.dynamic-de63 {
    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);
}

.dynamic-de63 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.input-603d {
    padding: var(--section-padding);
}

.video-7aa0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-7aa0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-726f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status-726f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.backdrop-old-e8c4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hot-f3bf {
    display: flex;
    flex-direction: column;
}

.warm-5fb4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.purple_f18c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.caption_light_3499 {
    color: var(--accent-color);
}

.backdrop-bottom-4638 {
    font-size: 1.25rem;
}

.pink_3fe4 {
    margin-bottom: 1rem;
}

.pink_3fe4 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.photo-49d9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pressed_5c6a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.container_green_7e77 {
    text-align: center;
}

.picture-6c35 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-2ebe {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.huge-cef7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out-8d25 {
    margin: 2rem 0;
}

.link-gas-ba95 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.link-gas-ba95 .active-3ded {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_tall_7137 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nav_9d8e {
    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;
}

.nav_9d8e:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info_small_0df5 {
    font-size: 2rem;
}

.filter_new_dc4d {
    display: flex;
    flex-direction: column;
}

.link-ea1c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.title-aaf3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.section-rough-ea1e {
    padding: var(--section-padding);
}

.tag_0818 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag_0818 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag_0818 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-8a4f {
    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);
}

.pagination-8a4f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination-8a4f .picture-6c35 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pagination-8a4f .tertiary-2ebe {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.pagination-8a4f .panel_dim_1e4f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.east-175d {
    margin-top: 4rem;
}

.last_c5b9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.status_thick_a189 {
    overflow-x: auto;
}

.gold-4f60 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gold-4f60 thead {
    background: var(--accent-color);
}

.gold-4f60 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.gold-4f60 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.gold-4f60 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.gold-4f60 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.secondary-stone-b7d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-thick-bc7e {
    max-width: 900px;
    margin: 0 auto;
}

.content-purple-0994 {
    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);
}

.content-purple-0994:hover {
    border-color: var(--accent-color);
}

.message-a3f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.message-a3f1 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.description_last_018e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.content-purple-0994.fn-active-61af .description_last_018e {
    transform: rotate(45deg);
}

.border-short-0f8b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.content-purple-0994.fn-active-61af .border-short-0f8b {
    max-height: 1000px;
}

.border-short-0f8b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.widget-black-0baf {
    padding: var(--section-padding);
}

.left_b9bf {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.slow-fac4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_9151 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_9151 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column_f04d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_inner_c53d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chip_glass_79bf {
    font-size: 2rem;
}

.hot_4755 {
    color: var(--text-white);
    margin: 0;
}

.liquid_6bb7 {
    list-style: none;
    padding: 0;
}

.liquid_6bb7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid_6bb7 li:last-child {
    border-bottom: none;
}

.light-ba9d {
    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);
}

.light-ba9d p {
    color: var(--success-color);
    margin: 0;
}

.pink_7a9e {
    margin-top: 3rem;
}

.box-selected-505a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sort-0dda {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort-0dda {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-54e8 {
    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);
}

.status_2a73 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus-54e8 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.thick_be76 {
    padding: var(--section-padding);
}

.active_1ca7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_1ca7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_out_fcd4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip_out_fcd4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.north-b49e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.title_d14a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.section_a234 {
    flex: 1;
}

.shade_b191 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.column_edab {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.badge-large-cb2f {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-a63d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-a63d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.main-full-1b1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.texture_silver_9513 {
    padding: var(--section-padding);
}

.aside-a325 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.south_4c7f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_4c7f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-bb43 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-middle-ace6, .inner_4c89, .layout_73fb {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.layout_73fb {
    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 */
.dirty_6e29 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-c453 {
    margin: 2rem 0;
}

.tag_a772 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-9d28 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer_basic_c84d {
    list-style: none;
    padding: 0;
}

.footer_basic_c84d 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;
}

.footer_basic_c84d li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer_basic_c84d li:last-child {
    border-bottom: none;
}

.inner_21ef {
    text-align: center;
    margin-top: 2rem;
}

.hover-0808 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.gradient-rough-8332 {
    padding: var(--section-padding);
}

.message-bright-d4f5 {
    margin: 2rem 0;
}

.advanced_7a8f {
    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) {
    .advanced_7a8f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.advanced_7a8f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination_up_dfd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.frame-dynamic-c235 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.gradient-d29a {
    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;
}

.slow-d102 {
    flex: 1;
}

.tag-hard-83cf {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.left_e051 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.background_99f5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.medium-add0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .medium-add0 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.motion_a0dc {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion_a0dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.motion_a0dc .picture-6c35 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.motion_a0dc .tertiary-2ebe {
    color: var(--text-gray);
    font-size: 1rem;
}

.status-solid-97a7 {
    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);
}

.nav_dim_cd08 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.nav_dim_cd08 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.out_8af7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .out_8af7 {
        grid-template-columns: 1fr 1fr;
    }
}

.icon_solid_5538 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-short-070b {
    margin-bottom: 1.5rem;
}

.border-short-070b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.border-short-070b input,
.border-short-070b 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;
}

.border-short-070b input:focus,
.border-short-070b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.summary-center-e817 {
    width: 100%;
    margin-top: 1rem;
}

.footer_huge_d71e {
    display: flex;
    align-items: center;
}

.block_dc81 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.gradient-119d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tooltip-673d {
    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;
}

.primary-1a70 {
    color: var(--text-gray);
}

.sidebar_8ffb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dark-4372 {
    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);
}

.dark-4372 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.dropdown_action_18cb {
    margin-top: 3rem;
}

.logo_1408 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.filter-a71d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_ccdc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.outer_3a5e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outer_3a5e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.accent-hovered-e98e {
    padding: var(--section-padding);
}

.dark-2580 {
    margin: 2rem 0;
}

.button_prev_5890 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.active_6bef {
    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;
}

.active_6bef:hover, .active_6bef.fn-active-61af {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.fixed-c095 {
    display: none;
}

.fixed-c095.fn-active-61af {
    display: block;
}

.border-stale-0ae1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_center_24d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notification_down_536b h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.notification_down_536b ul {
    list-style: none;
    padding: 0;
}

.notification_down_536b ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.notification_down_536b ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.content_iron_fbdf {
    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 */
.down-1904 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_4480 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_fe0c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_complex_3b21 {
    color: var(--accent-color);
    margin: 0;
}

.pattern_f724 {
    display: flex;
    gap: 1.5rem;
}

.icon-silver-6203 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gallery-west-4eff {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hovered-528b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hovered-528b.feature-0b34 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hovered-528b.info-8a33 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hovered-528b.background_full_e0f1 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.liquid_602b {
    margin-top: 2rem;
}

.column_7c5d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tabs_bright_7a63 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tabs_bright_7a63 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-b452 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.shadow-5ee0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stone-ffe5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.wrapper_west_0c6a {
    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 */
.box-warm-2bfe {
    padding: var(--section-padding);
}

.avatar-2e86 {
    margin: 2rem 0;
}

.header-wide-fa39 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.menu-steel-57e5 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.widget-yellow-6fcd {
    list-style: none;
    padding: 0;
}

.widget-yellow-6fcd 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;
}

.widget-yellow-6fcd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.widget-yellow-6fcd li:last-child {
    border-bottom: none;
}

.warm-91c6 {
    margin: 2rem 0;
}

.paragraph_motion_6748 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard_df4e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard_df4e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.purple-3896 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_8e5e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo-3ba3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.panel-warm-2f74 {
    margin-top: 2rem;
}

.prev_d79d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.input_48a3 {
    list-style: none;
    padding: 0;
}

.progress_slow_1475 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.progress_slow_1475 a {
    color: var(--accent-color);
    text-decoration: none;
}

.progress_slow_1475 a:hover {
    text-decoration: underline;
}

.article-west-f286 {
    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 */
.section_inner_abc5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-d03f {
    margin: 2rem 0;
}

.tiny_bdf2 {
    margin-bottom: 3rem;
}

.tiny_bdf2 .outline-9d28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.right_c18d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.video-purple-c3fd {
    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);
}

.video-purple-c3fd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.highlight_2f7f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .highlight_2f7f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_first_f1be {
    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 */
.south_ced7 {
    padding: var(--section-padding);
}

.pattern_3cc6 {
    margin: 2rem 0;
}

.hero_fluid_c87f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.block-b32f {
    overflow-x: auto;
    margin: 2rem 0;
}

.video_f18f {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gallery_black_75ff {
    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;
}

.grid-2125 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.background_lite_d316 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .background_lite_d316 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_61b8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_61b8 .active-3ded {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.outline_61b8 .progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress_small_bd0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.logo_a5b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_2ead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_2ead {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_3dc2 {
    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;
}

.video_3dc2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.smooth_5470 {
    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);
}

.mask_left_a7e7 {
    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;
}

.feature-west-915c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft-443b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.module_small_23b4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.bright_fd27 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_affa {
    color: var(--text-white);
    font-weight: 600;
}

.tabs-601a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner_b229 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_b229 .media_lower_7ab6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.status_next_6e12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status_next_6e12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-10c5 {
    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);
}

.summary-10c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-10c5 .picture-6c35 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-10c5 .tertiary-2ebe {
    color: var(--text-gray);
    font-size: 1rem;
}

.hot_39ed {
    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);
}

.modal-fb03 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.modal-fb03 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hard_72fa {
    margin: 2rem 0;
}

.form-south-4830 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.form-south-4830:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.article-fda1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pattern_light_ebdd {
    flex: 1;
}

.hero_pressed_ee8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_small_f3c5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.popup-0a39 {
    margin: 2rem 0;
}

.item-plasma-7669 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-plasma-7669 .progress_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.item-plasma-7669 .search-31eb {
    color: var(--text-gray);
    margin: 0;
}

.new_a1b4 {
    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);
}

.new_a1b4 .rough-5a79 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.progress_small_bd0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.copper-f504 {
    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;
}

.basic-069d {
    flex: 1;
}

.carousel-bright-2833 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.banner-lower-8f73 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.description-c4f8 {
    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;
}

.medium-27f2 {
    flex: 1;
}

.gas_1950 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stone-290b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.rough_05c8 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.hot-3bd1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hidden_13cb {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hidden_13cb .media_lower_7ab6 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-bee7 {
    margin-top: 2rem;
}

.box-bee7 .box-selected-505a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pink_67c7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-purple-3910 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop-purple-3910 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-purple-3910 .container_green_7e77 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold-efa8 {
    margin: 2rem 0;
}

.icon_solid_9bc5 {
    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 */
.sidebar-middle-a8b0 {
    padding: var(--section-padding);
}

.icon-orange-c8ab {
    margin-top: 1rem;
}

.status_0d4e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.status_0d4e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.status_0d4e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.thick-257c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-df1a {
    margin: 2rem 0;
}

.in-5eba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.accent-under-7ffc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.orange-1fb0 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.slider-5b79 {
    margin: 2rem 0;
}

.content_e49f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.content_e49f .outline-9d28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_basic_3e89 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown_basic_3e89 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-basic-668c {
    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);
}

.fixed_c23a {
    color: var(--text-white);
    font-weight: 600;
}

.south-90ce {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.brown-b2a1 {
    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);
}

.brown-b2a1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.hero_af1d {
    padding: var(--section-padding);
}

.under_30ee {
    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;
}

.under_30ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hero_5b6e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_5b6e .status_2a73 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_5b6e .dynamic_91c2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slider_purple_e65d {
    flex: 1;
}

.link-complex-b80b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.out-6de5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out-6de5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.out-6de5 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.plasma-6c4e {
    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);
}

.plasma-6c4e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.plasma-6c4e strong {
    color: var(--warning-color);
}

/* Slots Section */
.logo_2599 {
    padding: var(--section-padding);
}

.border_f7e6 {
    margin: 2rem 0;
}

/* Table Games Section */
.chip-mini-216b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-2863 {
    margin: 2rem 0;
}

.narrow-f7c5 {
    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);
}

.narrow-f7c5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.narrow-f7c5 .heading-534c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow-f7c5 .hidden_0bc1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu_8b22 {
    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);
}

.menu_8b22 .rough-5a79 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.picture_5e1a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-inner-c193 {
    margin: 2rem 0;
}

.disabled_6161 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-glass-c05d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider_0e25 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside-mini-b1fc {
    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);
}

.aside-mini-b1fc:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.aside-mini-b1fc.fn-active-61af {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_paper_d850 {
    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);
}

.large-a714 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.large-a714 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hover_basic_07e0 {
    padding: var(--section-padding);
}

.avatar_simple_5ee6 {
    margin: 2rem 0;
}

.fast_a1c4 {
    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);
}

.fast_a1c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fast_a1c4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tag-dfae {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.row_b914 {
    flex: 1;
}

.column-mini-7b09 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.static-944b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-5d75 {
    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;
}

.surface-out-a5a4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.full_ad00 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.selected-46e9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status_6577 {
    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;
}

.status_6577:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.sort-e81c {
    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);
}

.tooltip-bc0e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tooltip-bc0e strong {
    color: var(--accent-color);
}

/* New Games Section */
.text_4fd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside-liquid-745a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside-liquid-745a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-liquid-745a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion_1491 {
    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;
}

.motion_1491:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny-51c0 {
    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;
}

.element_bottom_fcc7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.left-fb32 {
    font-size: 2rem;
}

.top-36de {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.accordion-a3b5 {
    flex: 1;
}

.element-over-120b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.focus_thick_b811 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chip-9ec3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-fca0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-ea56 {
    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;
}

.cold-db47 {
    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;
}

.cold-db47:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.popup-2f83 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-8caf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim-8118 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .dim-8118 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper_fd67 {
    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);
}

.hard_2904 {
    color: var(--text-white);
    font-weight: 600;
}

.detail_c4f7 {
    color: var(--accent-color);
    font-weight: 600;
}

.gradient-white-db33 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.gradient-white-db33 strong {
    color: var(--accent-color);
}

/* Security Section */
.small_4e33 {
    padding: var(--section-padding);
}

/* Benefits Section */
.fast_6160 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.inner-1a35 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.layout-easy-f872 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-d2e3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.center-06a3 {
    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) {
    .center-06a3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.center-06a3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.center-06a3 .description-c4f8 {
    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;
}

.center-06a3 .medium-27f2 {
    flex: 1;
}

.center-06a3 .gas_1950 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.center-06a3 .stone-290b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.center_03c1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center_03c1 .bright_c4d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center_03c1 .input_full_86b3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center_03c1 .input_full_86b3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center_03c1 .input_full_86b3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.first-d1f5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.small-efd8 {
    padding: var(--section-padding);
}

.feature_pro_965c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .feature_pro_965c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass-9279 {
    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);
}

.glass-9279:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.glass-9279 .dropdown_7763 {
    font-size: 2rem;
    flex-shrink: 0;
}

.glass-9279 .dropdown_pro_2f2c {
    flex: 1;
}

.glass-9279 .message_b6f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass-9279 .out-bdd8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading-tiny-dac4 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-tiny-dac4 .prev-7758 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-tiny-dac4 .description-02cd {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.heading-tiny-dac4 .description-02cd 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);
}

.heading-tiny-dac4 .description-02cd li:last-child {
    border-bottom: none;
}

.heading-tiny-dac4 .description-02cd 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;
}

.heading-tiny-dac4 .description-02cd li strong {
    color: var(--text-white);
}

.description_549e {
    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);
}

.description_549e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_549e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.first-d4d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-mini-7bfa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box-mini-7bfa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bright_c25c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bright_c25c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay_simple_3dfb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soft_e448 {
    font-size: 2rem;
}

.complex-4a71 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.container_fixed_279b {
    flex: 1;
}

.disabled_dd2b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_dd2b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.disabled_dd2b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.blue_49c4 {
    margin-top: 3rem;
}

.header-wide-fa39 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.menu-steel-57e5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.widget-yellow-6fcd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-yellow-6fcd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.widget-yellow-6fcd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.widget-yellow-6fcd li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.modal_7d82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_58fb {
    margin: 2rem 0;
}

.frame-upper-018e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.frame-upper-018e .outline-9d28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-df93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled-df93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input_glass_2e7f {
    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);
}

.input_glass_2e7f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.list-current-44cc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview_14eb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pink-e8db {
    padding: var(--section-padding);
}

.picture_action_b1f3 {
    margin: 2rem 0;
}

.gold-f9be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .gold-f9be {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-f9be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-24b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.frame-24b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_motion_27ed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.smooth-e015 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.notice-gas-1482 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-gas-1482.over_bf9a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hover-north-65fd {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.popup_thick_f527 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.active-slow-2b77 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.old_7054 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.media_cb15 {
    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);
}

.media_cb15 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media_cb15 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.header_action_df7f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-6a8e {
    margin: 2rem 0;
}

.tertiary_b64a {
    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) {
    .tertiary_b64a {
        flex-direction: column;
        gap: 1rem;
    }
}

.tertiary_b64a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tertiary_b64a::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);
}

.picture-over-6beb {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.dim-d128 {
    flex: 1;
}

.caption-d7be {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pattern_6574 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_6574 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.article_ab87 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_cool_129e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed_7bb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fixed_7bb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood-3491 {
    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);
}

.video-efc0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-short-a8ab {
    flex: 1;
}

.smooth_cd9c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tertiary_fluid_5b49 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.down-5070 {
    margin-top: 2rem;
    text-align: center;
}

.layout_hot_b516 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_hot_b516 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.shade-4c32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-4c32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-4765 {
    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);
}

.fluid-4765:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fluid-4765 .liquid-0bba {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-4765 .module-dynamic-7772 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.fluid-4765 .feature-bca9 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.fluid-4765 .breadcrumb-center-c23b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.avatar-2701 {
    padding: var(--section-padding);
}

.pattern-a9bf .notice_fast_ae72 {
    flex: 1;
}

/* Promo Calendar Section */
.tag_red_1686 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-94f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-94f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_prev_6f5f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-copper-5b5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.fast_befc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-6840 {
    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);
}

.badge_87ee {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.photo_bronze_d203 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.main-d93d {
    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);
}

.main-d93d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-d93d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.breadcrumb-hard-9a52 {
    padding: var(--section-padding);
}

.full_caa2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .full_caa2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-last-a57c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_clean_3dbb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge-dim-e51b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-dim-e51b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_d3ff {
    margin-top: 3rem;
}

.wrapper_d3ff .header-wide-fa39 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wrapper_d3ff .menu-steel-57e5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper_d3ff .widget-yellow-6fcd {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wrapper_d3ff .widget-yellow-6fcd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wrapper_d3ff .widget-yellow-6fcd li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wrapper_d3ff .widget-yellow-6fcd li strong {
    color: var(--warning-color);
}

.border-west-7256 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border-west-7256 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.fluid_e05a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-a242 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-a242 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide-5a17 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-5a17 .outline-9d28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.title-297c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_center_8ca6 {
    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);
}

.disabled_center_8ca6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block-hot-9ba6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-middle-0c8a {
    flex: 1;
}

.icon_632c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.slider_light_47b4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.content_6783 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.icon_orange_1709 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.south_5b05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .south_5b05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_3d70 {
    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);
}

.badge_3d70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under_d3f2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature_up_b56e {
    color: var(--text-gray);
    font-size: 1rem;
}

.nav_dim_cd08 {
    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);
}

.mini_2b61 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mini_2b61 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.copper-63cf { 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; }
.huge_d687, .iron-4112 { max-width:100%; height:auto; }

.gold_42c0, .main_e5f2, .hero_red_819c { white-space:normal; }

.mask-4039,
.summary-4259,
.article-gas-31b7,
.shade-4c32,
.popup-0a39,
.top_8837 {
  flex-wrap:wrap;
}

[class*="grid"],
.south_5b05,
.gold-f9be,
.background-9418 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.list_action_c82c img,
.summary-4259 img,
.feature-stale-07c3 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.highlight_0392, .dropdown_c710,
.thumbnail-liquid-f0e1, .section-light-0104 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.status_thick_a189 { width:100%; overflow-x:auto; }
.status_thick_a189 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.grid_2784 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .grid_2784 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.black_e122 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tag_0818,
.disabled-5a9b,
.under_2e20,
.thumbnail-wide-ed92,
.medium-add0,
.south_5b05,
.gold-f9be,
.background-9418,
.wood-d6bd,
.avatar_simple_5ee6,
.grid_2784 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tag_0818,
  .disabled-5a9b,
  .under_2e20,
  .thumbnail-wide-ed92,
  .medium-add0,
  .south_5b05,
  .gold-f9be,
  .background-9418,
  .wood-d6bd,
  .avatar_simple_5ee6,
  .grid_2784 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.pagination-8a4f,
.motion_a0dc,
.badge_3d70,
.caption_30b0,
.frame-24b9,
.pagination_easy_2d93,
.fast_a1c4,
.black_e122 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.breadcrumb_gas_20a1,
.modal_6d72,
.up_6442 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.breadcrumb_gas_20a1 > *,
.modal_6d72 > *,
.up_6442 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 5e6c */
.promo-block-b2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
