/* {$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;
}

.center-280f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.steel-0ac2 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .steel-0ac2 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .steel-0ac2 {
        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 */
.table-614b {
    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);
}

.mini-c8ac {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .mini-c8ac {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dim-7858 {
        grid-column: 1;
    }
    
    .orange_b45c {
        grid-column: 2;
    }
    
    .dark-d2d6 {
        grid-column: 3;
    }
}

.dim-7858 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dim-7858:hover img {
    transform: scale(1.05);
}

/* Navigation */
.solid_a700 {
    display: none;
}

@media (min-width: 1024px) {
    .solid_a700 {
        display: block;
    }
}

/* Grouped Navigation */
.breadcrumb_green_d663 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.brown_ab44 {
    position: relative;
}

.image-af49 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.brown_ab44 .tag-lite-6d33 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tag-lite-6d33 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.narrow_15b0 {
    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;
}

.narrow_15b0:hover,
.narrow_15b0.fn-active-928e {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.message_orange_5aa1 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .message_orange_5aa1 {
        display: flex;
    }
}

/* Mobile Register Button */
.orange_b45c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .orange_b45c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.item-dd6b {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.item-dd6b::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 */
.dark-d2d6 {
    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) {
    .dark-d2d6 {
        display: none;
    }
}

.dark-d2d6 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dark-d2d6.fn-active-928e span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dark-d2d6.fn-active-928e span:nth-child(2) {
    opacity: 0;
}

.dark-d2d6.fn-active-928e span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dim_faf2 {
    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;
}

.dim_faf2.fn-active-928e {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.glass-cd46 {
    overflow: hidden;
}

.gallery_wide_b1e2 {
    list-style: none;
    padding: 0.75rem 0;
}

.carousel-east-be74 {
    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;
}

.carousel-east-be74:hover,
.carousel-east-be74.fn-active-928e {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.carousel-east-be74.image-purple-1b89 {
    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;
}

.carousel-east-be74.image-purple-1b89::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 */
.glass-492e {
    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;
}

.complex-6275 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.complex-6275:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.element-tall-c077 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.element-tall-c077:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hero-old-8ab1 {
    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;
}

.hero-old-8ab1:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.block_04cb {
    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;
}

.input_dd56 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.input_dd56:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.iron-540d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.iron-540d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pagination_0b82 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pagination_0b82: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);
}

.modal_cd0f {
    font-size: 1em;
    font-weight: 700;
}

.pagination-f05f {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.component-a401 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.component-a401::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;
}

.accordion_short_0a57 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .accordion_short_0a57 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.overlay-c0f0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tertiary-paper-7dea {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.container-a227 {
    margin-bottom: 2rem;
}

.primary_glass_cb33 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .primary_glass_cb33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-f428 {
    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);
}

.section_ccac {
    font-size: 1.5rem;
}

.heading_c19a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.active_glass_5db0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-0fb7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.gold-0fb7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.sidebar_purple_34c6 {
    text-align: center;
    margin-bottom: 3rem;
}

.outline-mini-ff61 {
    margin-bottom: 1rem;
}

.gold_fafb {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.surface-warm-39fe {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface-warm-39fe {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .surface-warm-39fe.right_5ab6 {
        direction: rtl;
    }
    
    .surface-warm-39fe.right_5ab6 > * {
        direction: ltr;
    }
}

.title_easy_ee86 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.title_easy_ee86:first-child {
    margin-top: 0;
}

.avatar_paper_42a1 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lower-0033 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.lower-0033:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.banner_ff98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_ff98 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_old_d162 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.white_ce97 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fresh-0a9d {
    list-style: none;
}

.fresh-0a9d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fresh-0a9d li:last-child {
    border-bottom: none;
}

/* Games Features */
.huge_dbca {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.alert-853c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.paragraph-out-bd4f {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.sort_279d {
    margin: 2rem 0;
}

.old_b514 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.list-static-e4d6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.full_0fd7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hot_082c {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.thick_9b8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_9b8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red_2c47 {
    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);
}

.red_2c47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-cef8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.glass_331e {
    font-size: 1.5rem;
}

.section-e972 {
    color: var(--accent-color);
    margin: 0;
}

.advanced_a7d4 {
    list-style: none;
}

.advanced_a7d4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.advanced_a7d4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.article_liquid_db25 {
    margin: 2rem 0;
}

.new-46bd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.gold-53c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gold-53c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_35bf {
    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);
}

.article-d72d {
    font-size: 1.25rem;
}

.avatar-8601 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.label_662e,
.tall_8ef4 {
    text-align: center;
    margin: 2rem 0;
}

.mini_d071,
.form-medium-1d32 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.first_719e {
    margin: 2rem 0;
    text-align: center;
}

.gallery-action-bc97 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-action-bc97::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;
}

.hover_mini_2577 {
    position: relative;
    z-index: 1;
}

.text-hard-8f93 {
    margin-bottom: 1rem;
}

.basic_a10c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.selected_4ed0 {
    margin-bottom: 3rem;
}

.next-5fee {
    margin-top: 3rem;
}

.alert_983e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .alert_983e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_983e .pagination-f428 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_cc96 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip-active-cefd {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.feature-5bb4 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hover-cdd5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hover-cdd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-cdd5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.gallery-27f6 {
    margin-bottom: 1rem;
}

.link-simple-e5ce img {
    margin-bottom: 1rem;
}

.wood_ce78 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple-fd98 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-mini-38ca {
    list-style: none;
}

.hero-mini-38ca li {
    margin-bottom: 0.5rem;
}

.hero-mini-38ca a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero-mini-38ca a:hover {
    color: var(--accent-color);
}

.background_dim_0f1f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.paragraph_e283 {
    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);
}

.paragraph_e283:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.video_purple_462f {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.video_purple_462f p {
    margin-bottom: 0.25rem;
}

.pagination-gas-73c7 {
    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) {
    .pagination-gas-73c7 {
        flex-direction: row;
    }
}

.card-pro-b9dc {
    text-align: center;
}

@media (min-width: 768px) {
    .card-pro-b9dc {
        text-align: left;
    }
}

.card-pro-b9dc p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon_6bd3 {
    font-size: 0.75rem !important;
}

.mini_0b8d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_b80d {
    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);
    }
}

.static-796a {
    animation: fadeInUp 0.6s ease-out;
}

.background_hard_af75 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.texture_pink_ac32 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_pink_ac32 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.section_469f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_469f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_green_a544 {
    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);
}

.heading_green_a544 .paragraph-out-bd4f {
    font-size: 1.25rem;
}

.heading_green_a544 .current-6dc5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.grid_263e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid_263e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused_03d8 {
    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);
}

.focused_03d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east_638e {
    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);
}

.banner_503f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tabs_east_a7ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_0975 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-red-8016 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-red-8016 .advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph-red-8016 .form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_c872 {
    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);
}

.article_fixed_4a3c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.article_fixed_4a3c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.article_fixed_4a3c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gradient-c846 {
    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);
}

.purple-5c0a {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.backdrop-721a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.backdrop-721a label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-721a 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);
}

.backdrop-721a input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.backdrop-721a input::placeholder {
    color: var(--text-muted);
}

.iron_4c19 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cold_dce0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.cold_dce0 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.summary-5ef3 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.summary-5ef3:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.gold-53c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-53c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_35bf {
    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);
}

.pattern_35bf .article-d72d {
    font-size: 1.25rem;
}

.pattern_35bf .avatar-8601 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.left_b9dd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-feb5 {
    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);
}

.info-feb5 .paragraph-out-bd4f {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-feb5 .advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-feb5 .form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-a358 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_tiny_7499 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_tiny_7499 .article-mini-6349 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_tiny_7499 .motion_5379 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_light_95a4 {
    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);
}

.soft_d02e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .soft_d02e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_7dac {
    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);
}

.hidden_7dac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid_1bcb {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lower-cd60 {
    flex: 1;
}

.sort-fast-fc37 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.iron-f42a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.light_bbcb {
    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);
}

.light_bbcb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.iron-8509 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron-8509 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-a00d {
    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);
}

.table-a00d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy-f3ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.component-steel-9adc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fixed-a738 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.yellow_e43a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-c086 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_cdf4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_67db {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_67db .breadcrumb_6232 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_67db .bottom_1be5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-2062 {
    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);
}

.section_lite_b4f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-b171 {
    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);
}

.slow-b171 .paragraph-out-bd4f {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-b171 .advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slow-b171 .form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-wood-5c60 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-wood-5c60 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-ad24 {
    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);
}

.next-ad24:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.menu_paper_0f0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_paper_0f0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_562a {
    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);
}

.purple_562a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper-b906 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_1889 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-static-e4d6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.shadow-red-e1b5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.item_out_ef81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west-375e {
    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);
}

.west-375e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue-e710 {
    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);
}

.bright-9a2e {
    flex: 1;
}

.focused_68e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.upper_46f8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.secondary-04f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-e6c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_d889 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_d889 .article-mini-6349 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb_d889 .motion_5379 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_8ef4 {
    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);
}

.highlight_purple_821e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_purple_821e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.main_fluid_674e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_fluid_674e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-8f1b {
    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);
}

.summary-8f1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-bottom-ecd5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-7038 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo_4019 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.message-d4f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.message-rough-7cc4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_95ca {
    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);
}

.narrow_99a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_8fcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gradient_0ca8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_lite_b4f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-b171 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.slow-b171 .advanced-db67 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow-b171 .form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-c7e5 {
    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);
}

.disabled-tiny-2698 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-tiny-2698 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-tiny-2698 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_basic_2002 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main_basic_2002:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-564b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-north-4915 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.filter_d2bf {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tertiary_d22a {
    padding: 1.5rem;
}

.logo-f88e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_green_1976 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_green_1976 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;
}

.badge_green_1976 li:last-child {
    border-bottom: none;
}

.badge_green_1976 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.block_25ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_25ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_82ab {
    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_82ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-4865 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-771d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.panel_56a4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.prev_3e84 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-1af0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-action-1f38 {
    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);
}

.short_2cc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_db82 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas-1c2a {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-top-9308 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.smooth_f685 {
    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);
}

.slow_37d3 {
    text-align: center;
}

.shade_focused_65e9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_2d27 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.short-022c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_08f5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_08f5 .advanced-db67 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_08f5 .form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-dynamic-f76f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-dynamic-f76f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-dynamic-f76f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-5e9f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.content-5e9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-new-576d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.component_warm_15b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.advanced-db67 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.blue_58a7 {
    padding: 1.5rem;
}

.form-27b8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal_8e0b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal_8e0b 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;
}

.modal_8e0b li:last-child {
    border-bottom: none;
}

.modal_8e0b li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.background-7fe4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.summary_3417 {
    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);
}

.summary_3417:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_fast_6c2e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-a9c9 {
    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);
}

.east_638e {
    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;
}

.banner_503f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_east_a7ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_d4e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_orange_7206 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout_c5b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow-c635 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thick_d549 {
    display: flex;
    gap: 1rem;
}

.thick_d549 .notice-2ba2 {
    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;
}

.search-bac3 {
    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);
}

.right_4531 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.simple_4bac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_4bac 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;
}

.simple_4bac li:last-child {
    border-bottom: none;
}

.simple_4bac li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.short_4386 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .short_4386 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short_4386 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_a4f7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dropdown_a4f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_80ef {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active-ba84 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.breadcrumb_6232 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption-50c7 {
    font-size: 1rem;
}

.list_f411 {
    padding: 1.5rem;
}

.bottom_1be5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.filter-f452 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.filter-f452 .slow_37d3 {
    text-align: center;
}

.filter-f452 .row_2d27 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.filter-f452 .backdrop_short_33ee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block_pink_a924 {
    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);
}

.block_pink_a924:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.label-new-a832 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-new-a832 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-9806 {
    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);
}

.label-9806:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-8f64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_steel_c853 {
    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);
}

.cool-d49a {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow-b5f5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_932d {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_601b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple-a11e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-b14a {
    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);
}

.outline_33d9 {
    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;
}

.outline_33d9.prev_46e0 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.outline_33d9.chip-warm-8402 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.outline_33d9.article-focused-d29c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.outline_33d9.left_d968 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.outline_33d9.complex_cdd6 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.north_a2a8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_lower_d7e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_0dcd {
    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);
}

.east-e0a3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.blue-a358 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue-a358 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;
}

.blue-a358 li:last-child {
    border-bottom: none;
}

.blue-a358 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.mini-3f86 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mini-3f86 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini-3f86 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot_ae81 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hot_ae81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot_ae81.tall_2cb2 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .hot_ae81.tall_2cb2 {
        grid-column: span 3;
    }
}

.full-11b1 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.hot_ae81.tall_2cb2 .full-11b1 {
    background: rgba(6, 182, 212, 0.1);
}

.progress_dfdb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sidebar_cd78 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.hot_ae81.tall_2cb2 .sidebar_cd78 {
    color: var(--info-color);
}

.stone_6782 {
    padding: 1.5rem;
    text-align: center;
}

.plasma-7c1f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hot_ae81.tall_2cb2 .plasma-7c1f {
    color: var(--info-color);
}

.background_51d6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.container_static_d35f {
    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 */
.hot-16ed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot-16ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_bc8a {
    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);
}

.gold_bc8a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_center_41cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-feb5 {
    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);
}

.article-d72d {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-up-406d {
    flex: 1;
}

.new-46bd {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_east_dcca {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-2566 {
    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);
}

.outline-61ba {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-copper-0830 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer_b80d {
    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);
}

.breadcrumb_aa29 {
  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);
}

.breadcrumb_aa29 .slow_37d3 {
    text-align: center;
}

.breadcrumb_aa29 .shade_focused_65e9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.breadcrumb_aa29 .row_2d27 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero_8268 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-9d8f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_hot_3a05 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer_focused_ebda {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_smooth_b386 {
    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);
}

.advanced-b18b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_gold_ca1c {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-86e6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid-86e6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solid-86e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas-dc5c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gas-dc5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_5687 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.pattern-west-f88c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination_9288 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption_fluid_3c8d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caption_fluid_3c8d.message_3308 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.caption_fluid_3c8d.container_plasma_cb58 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.caption_fluid_3c8d.article-hot-3d45 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.mini_2cf5 {
    padding: 1.5rem;
    text-align: center;
}

.pro_6d97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.backdrop-3661 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.backdrop-3661 .summary_36a2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.container-eb0f {
    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);
}

.container-eb0f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.widget-narrow-2520 {
  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);
}

.dim_12f8 {
    text-align: center;
}

.dim_12f8 .shade_focused_65e9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.dim_12f8 .row_2d27 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.search-full-11a2 { text-align: center; }
.hot_2ca8 { text-align: left; }
.fluid-75ef { text-align: right; }

.filter_pink_0f29 { margin-bottom: 0; }
.video_up_82bf { margin-bottom: 0.5rem; }
.notification_a03d { margin-bottom: 1rem; }
.input-focused-d3d6 { margin-bottom: 1.5rem; }
.tertiary-liquid-8296 { margin-bottom: 2rem; }

.bottom-9d4f { margin-top: 0; }
.nav_fdac { margin-top: 0.5rem; }
.box-ed8b { margin-top: 1rem; }
.preview-bd0d { margin-top: 1.5rem; }
.dirty_402f { margin-top: 2rem; }

.fn-hidden-928e { display: none; }
.fn-visible-928e { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .component-a401 {
        padding: 6rem 0 3rem;
    }
    
    .accordion_short_0a57 {
        text-align: center;
    }
    
    .surface-warm-39fe {
        text-align: center;
    }
    
    .primary_glass_cb33 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .table-614b,
    .dim_faf2,
    .gallery-action-bc97,
    .feature-5bb4 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .component-a401 {
        background: none;
    }
}

/* Providers Section */
.sidebar-yellow-9ee5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-c30e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-c30e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-c30e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast_e000 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fast_e000:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_4c75 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blue-9c72 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.message-0cbf {
    list-style: none;
    padding: 0;
}

.message-0cbf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.message-0cbf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.banner-8c60 {
    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);
}

.banner-8c60 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.filter_8012 {
    padding: var(--section-padding);
}

.brown_509c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .brown_509c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth_062b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.smooth_062b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.right-641f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-solid-dfbd {
    display: flex;
    flex-direction: column;
}

.text-center-11f8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero_cool_6d06 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.widget-5571 {
    color: var(--accent-color);
}

.aside_out_bf1c {
    font-size: 1.25rem;
}

.first-6aa6 {
    margin-bottom: 1rem;
}

.first-6aa6 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.element-0f3f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tooltip-82ce {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.slow_37d3 {
    text-align: center;
}

.shade_focused_65e9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_2d27 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.stone_b298 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-2b30 {
    margin: 2rem 0;
}

.article-d13d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.article-d13d .paragraph-out-bd4f {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_blue_8ddb {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.red-aa18 {
    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;
}

.red-aa18:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bronze_b2e2 {
    font-size: 2rem;
}

.item-2c5b {
    display: flex;
    flex-direction: column;
}

.secondary-fast-db3a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.chip-762f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.huge-c126 {
    padding: var(--section-padding);
}

.main-7ecf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .main-7ecf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-7ecf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_prev_5a61 {
    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);
}

.media_prev_5a61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media_prev_5a61 .shade_focused_65e9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.media_prev_5a61 .row_2d27 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.media_prev_5a61 .article-south-5689 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.breadcrumb-0b0a {
    margin-top: 4rem;
}

.hero-static-d475 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.iron-97d1 {
    overflow-x: auto;
}

.white_2373 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.white_2373 thead {
    background: var(--accent-color);
}

.white_2373 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.white_2373 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.white_2373 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.white_2373 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.message-simple-5ffd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-2b74 {
    max-width: 900px;
    margin: 0 auto;
}

.picture_5235 {
    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);
}

.picture_5235:hover {
    border-color: var(--accent-color);
}

.container-5e93 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.container-5e93 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.accent-e18c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.picture_5235.fn-active-928e .accent-e18c {
    transform: rotate(45deg);
}

.button-a188 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.picture_5235.fn-active-928e .button-a188 {
    max-height: 1000px;
}

.button-a188 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.container-static-b365 {
    padding: var(--section-padding);
}

.article_fixed_4a3c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.video-clean-b150 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_6c5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_6c5b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_b966 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_c5e2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.middle_ea68 {
    font-size: 2rem;
}

.dark-a4ec {
    color: var(--text-white);
    margin: 0;
}

.status-aeb9 {
    list-style: none;
    padding: 0;
}

.status-aeb9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-aeb9 li:last-child {
    border-bottom: none;
}

.wood_89fd {
    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);
}

.wood_89fd p {
    color: var(--success-color);
    margin: 0;
}

.card_6192 {
    margin-top: 3rem;
}

.right_4531 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wood_56bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wood_56bd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_72fc {
    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);
}

.white-11cd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hard_72fc p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.inner_19a6 {
    padding: var(--section-padding);
}

.video-8f29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-8f29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_80dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail_80dd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.filter_d3b0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.huge-7dca {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pressed_2fcf {
    flex: 1;
}

.active_d28d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hover_cool_6266 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dynamic-890b {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-ab03 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dim-ab03:last-child {
    border-bottom: none;
}

/* Comparison Section */
.disabled_black_8c1a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.green-2a72 {
    padding: var(--section-padding);
}

.article_black_b338 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.outer_6847 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_6847 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid_2b62 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_4bb3, .short_e5e2, .wide-61b5 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.wide-61b5 {
    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 */
.menu_slow_1007 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-4f16 {
    margin: 2rem 0;
}

.prev_f6ed {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-lower-6f2b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary_5386 {
    list-style: none;
    padding: 0;
}

.summary_5386 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;
}

.summary_5386 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.summary_5386 li:last-child {
    border-bottom: none;
}

.solid_d329 {
    text-align: center;
    margin-top: 2rem;
}

.bottom-c346 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.orange_a08e {
    padding: var(--section-padding);
}

.dropdown_stale_4544 {
    margin: 2rem 0;
}

.first_241d {
    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) {
    .first_241d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first_241d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.text_motion_277b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.tabs-center-1fbe {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.prev_5b53 {
    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;
}

.easy_3e23 {
    flex: 1;
}

.short-ebb5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.backdrop-570d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.summary_1e17 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.accordion-green-8e36 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .accordion-green-8e36 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.status-04dc {
    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);
}

.status-04dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status-04dc .shade_focused_65e9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status-04dc .row_2d27 {
    color: var(--text-gray);
    font-size: 1rem;
}

.frame-middle-08dd {
    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);
}

.video-wood-8ed1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.video-wood-8ed1 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.gradient_active_a29c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .gradient_active_a29c {
        grid-template-columns: 1fr 1fr;
    }
}

.fixed-d6b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-f4ee {
    margin-bottom: 1.5rem;
}

.wrapper-f4ee label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wrapper-f4ee input,
.wrapper-f4ee 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;
}

.wrapper-f4ee input:focus,
.wrapper-f4ee select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.stone-e068 {
    width: 100%;
    margin-top: 1rem;
}

.info_silver_520c {
    display: flex;
    align-items: center;
}

.focused-d6c2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.description_short_247a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.label_middle_c6b4 {
    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;
}

.progress-15b8 {
    color: var(--text-gray);
}

.logo-light-9b80 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.picture-wide-eab7 {
    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);
}

.picture-wide-eab7 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.wrapper-244b {
    margin-top: 3rem;
}

.smooth_5c35 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hero_a830 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-be50 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.sidebar_white_02ab {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar_white_02ab:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.icon_narrow_d2c0 {
    padding: var(--section-padding);
}

.background_old_6ef7 {
    margin: 2rem 0;
}

.left_f14b {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hard-2c03 {
    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;
}

.hard-2c03:hover, .hard-2c03.fn-active-928e {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.label-pink-2f6d {
    display: none;
}

.label-pink-2f6d.fn-active-928e {
    display: block;
}

.shadow_75e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_d9d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video_lite_456e h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.video_lite_456e ul {
    list-style: none;
    padding: 0;
}

.video_lite_456e ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.video_lite_456e ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight_old_3844 {
    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 */
.texture_27f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-liquid-9d4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.brown-b6ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.in_b67f {
    color: var(--accent-color);
    margin: 0;
}

.motion-5ff9 {
    display: flex;
    gap: 1.5rem;
}

.center_4b3b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.content_east_bb71 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.frame-right-77e4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.frame-right-77e4.list_advanced_d371 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.frame-right-77e4.caption_dirty_ca3f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.frame-right-77e4.static-a85d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.brown-14b2 {
    margin-top: 2rem;
}

.title_lower_8c09 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bronze_fe38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .bronze_fe38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_7ad2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tabs-narrow-d04b {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature_prev_65cd {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.item-1641 {
    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 */
.shade-1378 {
    padding: var(--section-padding);
}

.filter-d0df {
    margin: 2rem 0;
}

.secondary_d4f9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.wide-c9e4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.button-fresh-26b9 {
    list-style: none;
    padding: 0;
}

.button-fresh-26b9 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;
}

.button-fresh-26b9 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.button-fresh-26b9 li:last-child {
    border-bottom: none;
}

.main_c7a6 {
    margin: 2rem 0;
}

.active-d8c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.narrow-d8f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .narrow-d8f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button_ae84 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-ed6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_north_d12d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary_dirty_5546 {
    margin-top: 2rem;
}

.sort-fast-fc37 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.row_710e {
    list-style: none;
    padding: 0;
}

.layout_rough_80b4 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.layout_rough_80b4 a {
    color: var(--accent-color);
    text-decoration: none;
}

.layout_rough_80b4 a:hover {
    text-decoration: underline;
}

.item-smooth-16bb {
    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 */
.message-84a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_d69c {
    margin: 2rem 0;
}

.brown-5fd8 {
    margin-bottom: 3rem;
}

.brown-5fd8 .gradient-lower-6f2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-5ae7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.progress-gold-cc5b {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.progress-gold-cc5b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.center_19fc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .center_19fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_tall_d7ed {
    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 */
.article-6ed4 {
    padding: var(--section-padding);
}

.detail-motion-a2f1 {
    margin: 2rem 0;
}

.feature_white_11e0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.steel-1350 {
    overflow-x: auto;
    margin: 2rem 0;
}

.hovered-1bca {
    background: rgba(6, 182, 212, 0.1) !important;
}

.current-cabb {
    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;
}

.element-6766 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hidden-011a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hidden-011a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info_8fce {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_8fce .paragraph-out-bd4f {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.info_8fce .advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-6592 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.tag-copper-2497 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-9bb1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-9bb1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-left-81b9 {
    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;
}

.hover-left-81b9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hard-214b {
    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);
}

.white-7ce7 {
    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;
}

.current-44e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.light-1955 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.chip_ab26 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pagination-left-4a06 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar_2b48 {
    color: var(--text-white);
    font-weight: 600;
}

.modal_north_2696 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tall_f6c7 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tall_f6c7 .notice-2ba2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focused_e94b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focused_e94b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-8294 {
    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);
}

.tertiary-8294:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-8294 .shade_focused_65e9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-8294 .row_2d27 {
    color: var(--text-gray);
    font-size: 1rem;
}

.south_235a {
    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);
}

.article-1958 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.article-1958 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.message-rough-7cc4 {
    margin: 2rem 0;
}

.popup_95ca {
    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);
}

.popup_95ca:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.narrow_99a9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel-yellow-1cd4 {
    flex: 1;
}

.lower_8fcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gradient_0ca8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.section_lite_b4f2 {
    margin: 2rem 0;
}

.slow-b171 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow-b171 .advanced-db67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.slow-b171 .form-27b8 {
    color: var(--text-gray);
    margin: 0;
}

.last-c7e5 {
    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);
}

.last-c7e5 .mini_d071 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.card-6592 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.blue-e710 {
    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;
}

.bright-9a2e {
    flex: 1;
}

.upper_46f8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.secondary-04f1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.east_638e {
    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;
}

.focus-out-4be5 {
    flex: 1;
}

.banner_503f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.tabs_east_a7ef {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.layout_c5b4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.slow-c635 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.thick_d549 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thick_d549 .notice-2ba2 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.search-bac3 {
    margin-top: 2rem;
}

.search-bac3 .right_4531 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.input-17b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_f685 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .smooth_f685 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth_f685 .slow_37d3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-022c {
    margin: 2rem 0;
}

.border_08f5 {
    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 */
.narrow_37d2 {
    padding: var(--section-padding);
}

.blue_58a7 {
    margin-top: 1rem;
}

.modal_8e0b {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.modal_8e0b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.modal_8e0b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.backdrop_black_0553 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-plasma-1b4d {
    margin: 2rem 0;
}

.panel_a51d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.table_e5ac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section_fresh_1e6b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.image_7156 {
    margin: 2rem 0;
}

.progress_e488 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.progress_e488 .gradient-lower-6f2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description-427d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description-427d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module_309f {
    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);
}

.green_3170 {
    color: var(--text-white);
    font-weight: 600;
}

.under-0b07 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.list_32e0 {
    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);
}

.list_32e0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.action-94f1 {
    padding: var(--section-padding);
}

.dark_805b {
    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;
}

.dark_805b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.secondary-4016 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-4016 .white-11cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-4016 .element_east_c669 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.gallery-6d5f {
    flex: 1;
}

.summary-361a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cold-6dc6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold-6dc6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cold-6dc6 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fast-dd4f {
    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);
}

.fast-dd4f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fast-dd4f strong {
    color: var(--warning-color);
}

/* Slots Section */
.notification_c22f {
    padding: var(--section-padding);
}

.text-c086 {
    margin: 2rem 0;
}

/* Table Games Section */
.box_2353 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_cdf4 {
    margin: 2rem 0;
}

.paragraph_67db {
    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);
}

.paragraph_67db:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph_67db .breadcrumb_6232 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_67db .bottom_1be5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.black-2062 {
    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);
}

.black-2062 .mini_d071 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.backdrop-862f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_6235 {
    margin: 2rem 0;
}

.banner-da7f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-a625 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-752d {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.border-3716 {
    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);
}

.border-3716:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.border-3716.fn-active-928e {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_1129 {
    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);
}

.mask-up-44c9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask-up-44c9 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.north_878e {
    padding: var(--section-padding);
}

.short-d9e2 {
    margin: 2rem 0;
}

.sidebar_light_4221 {
    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);
}

.sidebar_light_4221:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .sidebar_light_4221 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.narrow_0b69 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.gradient-north-b60e {
    flex: 1;
}

.surface_new_dbdd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-orange-67f4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content_yellow_0528 {
    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;
}

.logo-gas-84e1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-8564 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.full-5d3a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.element-narrow-605e {
    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;
}

.element-narrow-605e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.complex-48c2 {
    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);
}

.light_684d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.light_684d strong {
    color: var(--accent-color);
}

/* New Games Section */
.element-rough-340a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_mini_1bd5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pattern_mini_1bd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_mini_1bd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_old_61da {
    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;
}

.active_old_61da:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside_0b21 {
    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;
}

.full-95da {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.layout-iron-5cbc {
    font-size: 2rem;
}

.tiny-3478 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.active-stale-630f {
    flex: 1;
}

.block-middle-a601 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.component-complex-2975 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.large_9868 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-3549 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.status_solid_dbcf {
    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;
}

.last-2af0 {
    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;
}

.last-2af0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hot-8ebe {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_5371 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_b5fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .feature_b5fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-175b {
    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);
}

.overlay-61a0 {
    color: var(--text-white);
    font-weight: 600;
}

.sort-b09c {
    color: var(--accent-color);
    font-weight: 600;
}

.simple-08d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.simple-08d7 strong {
    color: var(--accent-color);
}

/* Security Section */
.button_09c5 {
    padding: var(--section-padding);
}

/* Benefits Section */
.dirty-0679 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.highlight-bottom-5d30 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.full_5a66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_d8e1 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.accent_c597 {
    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) {
    .accent_c597 {
        flex-direction: column;
        gap: 1rem;
    }
}

.accent_c597:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accent_c597 .east_638e {
    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;
}

.accent_c597 .focus-out-4be5 {
    flex: 1;
}

.accent_c597 .banner_503f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.accent_c597 .tabs_east_a7ef {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.footer-5196 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-5196 .new-46bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-5196 .left_b9dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-5196 .left_b9dd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.footer-5196 .left_b9dd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.notice_8fa7 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.main_top_f12c {
    padding: var(--section-padding);
}

.nav-black-ce26 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nav-black-ce26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-prev-93d6 {
    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);
}

.sidebar-prev-93d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.sidebar-prev-93d6 .wide-5c89 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-prev-93d6 .frame-bronze-9038 {
    flex: 1;
}

.sidebar-prev-93d6 .article-mini-6349 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar-prev-93d6 .disabled_a8f1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo-b16d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-b16d .bottom-5d41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-b16d .thumbnail_52ba {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.logo-b16d .thumbnail_52ba 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);
}

.logo-b16d .thumbnail_52ba li:last-child {
    border-bottom: none;
}

.logo-b16d .thumbnail_52ba 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;
}

.logo-b16d .thumbnail_52ba li strong {
    color: var(--text-white);
}

.stone-420b {
    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);
}

.stone-420b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stone-420b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.paper_d3d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_thick_6021 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_thick_6021 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask_orange_486f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask_orange_486f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.solid_d97e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_east_1f19 {
    font-size: 2rem;
}

.component-13ee {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.carousel_gas_7e6b {
    flex: 1;
}

.row_19ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row_19ad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.row_19ad li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper_1ed3 {
    margin-top: 3rem;
}

.secondary_d4f9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wide-c9e4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-fresh-26b9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-fresh-26b9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button-fresh-26b9 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button-fresh-26b9 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.table-4027 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_soft_e1cf {
    margin: 2rem 0;
}

.middle_5b2a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.middle_5b2a .gradient-lower-6f2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.purple_d55e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .purple_d55e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-middle-258d {
    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);
}

.card-middle-258d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tall_5cbc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-c607 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.button-dark-175f {
    padding: var(--section-padding);
}

.over_dadf {
    margin: 2rem 0;
}

.hard-75a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hard-75a0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard-75a0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_right_a4c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_right_a4c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notification_outer_ce00 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.focused-33e4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.label_0233 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.label_0233.top_87f6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.input-left-cc63 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.east_d1d8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.breadcrumb_5e00 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.narrow-c7e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accent-5879 {
    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);
}

.accent-5879 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent-5879 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.aside-iron-2106 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_c442 {
    margin: 2rem 0;
}

.avatar-top-60c9 {
    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) {
    .avatar-top-60c9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.avatar-top-60c9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar-top-60c9::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);
}

.accordion-hot-83a5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.banner-4710 {
    flex: 1;
}

.clean_5640 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.brown_407b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brown_407b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.table-170a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-4643 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture_clean_bc25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture_clean_bc25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-bright-c182 {
    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);
}

.background_right_4598 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-ce67 {
    flex: 1;
}

.caption-e5d0 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.paragraph_center_0b5b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.orange_85b5 {
    margin-top: 2rem;
    text-align: center;
}

.description-smooth-782b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-smooth-782b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.label-new-a832 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-new-a832 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-9806 {
    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);
}

.label-9806:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label-9806 .gradient-4865 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-9806 .hero-771d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.label-9806 .panel_56a4 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.label-9806 .prev_3e84 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hover_fresh_a83c {
    padding: var(--section-padding);
}

.active_steel_c853 .soft_2968 {
    flex: 1;
}

/* Promo Calendar Section */
.tiny_f8e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-full-a3b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-full-a3b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_e282 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_outer_3bae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.notification_last_e27b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accent_red_7390 {
    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);
}

.mask-81c6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview_815b {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.short_c2d1 {
    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);
}

.short_c2d1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.short_c2d1 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.texture-large-c38b {
    padding: var(--section-padding);
}

.info-faa5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .info-faa5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brown_1fd3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-ca1b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel-bright-3239 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-bright-3239 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-a4ec {
    margin-top: 3rem;
}

.fixed-a4ec .secondary_d4f9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fixed-a4ec .wide-c9e4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-a4ec .button-fresh-26b9 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.fixed-a4ec .button-fresh-26b9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fixed-a4ec .button-fresh-26b9 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fixed-a4ec .button-fresh-26b9 li strong {
    color: var(--warning-color);
}

.shadow_9872 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow_9872 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.silver_6ead {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed-03c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-03c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_plasma_1bb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_plasma_1bb0 .gradient-lower-6f2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.nav_narrow_0697 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.component_3a87 {
    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);
}

.component_3a87:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slow-330c {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-gas-2627 {
    flex: 1;
}

.orange_7505 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.brown_9df9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.chip-dirty-8d43 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.alert-972e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.rough-6da1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .rough-6da1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-7bfb {
    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);
}

.active-7bfb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tag-tall-8ade {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_88a0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video-wood-8ed1 {
    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_green_3951 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.nav_green_3951 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.steel-0ac2 { 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; }
.gold-0fb7, .lower-0033 { max-width:100%; height:auto; }

.glass-492e, .hero-old-8ab1, .block_04cb { white-space:normal; }

.accordion_short_0a57,
.surface-warm-39fe,
.hot-16ed,
.label-new-a832,
.section_lite_b4f2,
.solid-86e6 {
  flex-wrap:wrap;
}

[class*="grid"],
.rough-6da1,
.hard-75a0,
.alert_983e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.component-a401 img,
.surface-warm-39fe img,
.active_glass_5db0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.overlay-c0f0, .tertiary-paper-7dea,
.outline-mini-ff61, .gold_fafb {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.iron-97d1 { width:100%; overflow-x:auto; }
.iron-97d1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.column-c30e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .column-c30e {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fast_e000 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.main-7ecf,
.layout_a1e9,
.column_6575,
.sort-smooth-749b,
.accordion-green-8e36,
.rough-6da1,
.hard-75a0,
.alert_983e,
.widget-narrow-2520,
.short-d9e2,
.column-c30e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .main-7ecf,
  .layout_a1e9,
  .column_6575,
  .sort-smooth-749b,
  .accordion-green-8e36,
  .rough-6da1,
  .hard-75a0,
  .alert_983e,
  .widget-narrow-2520,
  .short-d9e2,
  .column-c30e {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.media_prev_5a61,
.status-04dc,
.active-7bfb,
.pagination-f428,
.sort_right_a4c6,
.dim_12f8,
.sidebar_light_4221,
.fast_e000 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.gradient_basic_4ee6,
.iron-6f5f,
.main-e8f2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gradient_basic_4ee6 > *,
.iron-6f5f > *,
.main-e8f2 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 3378 */
.widget-item-w3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
