/* {$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;
}

.component_9d0f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.badge-c8e4 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .badge-c8e4 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .badge-c8e4 {
        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 */
.clean_a1dd {
    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);
}

.chip-complex-4fcb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .chip-complex-4fcb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .heading_5d99 {
        grid-column: 1;
    }
    
    .logo_c7ac {
        grid-column: 2;
    }
    
    .layout-tall-a464 {
        grid-column: 3;
    }
}

.heading_5d99 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.heading_5d99:hover img {
    transform: scale(1.05);
}

/* Navigation */
.primary_active_5b6e {
    display: none;
}

@media (min-width: 1024px) {
    .primary_active_5b6e {
        display: block;
    }
}

/* Grouped Navigation */
.red_edc2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-fixed-369e {
    position: relative;
}

.article-dynamic-a28f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.search-fixed-369e .content_soft_6e00 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.content_soft_6e00 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-stone-cd29 {
    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;
}

.footer-stone-cd29:hover,
.footer-stone-cd29.fn-active-b9b8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.shade-7728 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .shade-7728 {
        display: flex;
    }
}

/* Mobile Register Button */
.logo_c7ac {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .logo_c7ac {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.message_d3c8 {
    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;
}

.message_d3c8::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 */
.layout-tall-a464 {
    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) {
    .layout-tall-a464 {
        display: none;
    }
}

.layout-tall-a464 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.layout-tall-a464.fn-active-b9b8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.layout-tall-a464.fn-active-b9b8 span:nth-child(2) {
    opacity: 0;
}

.layout-tall-a464.fn-active-b9b8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.picture-4414 {
    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;
}

.picture-4414.fn-active-b9b8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.steel_6c76 {
    overflow: hidden;
}

.popup-517a {
    list-style: none;
    padding: 0.75rem 0;
}

.out-55a9 {
    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;
}

.out-55a9:hover,
.out-55a9.fn-active-b9b8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.out-55a9.wood-5181 {
    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;
}

.out-55a9.wood-5181::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 */
.tag_7159 {
    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;
}

.orange-a9df {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.orange-a9df:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.thick-8826 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.thick-8826:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.basic_86b4 {
    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;
}

.basic_86b4:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.aside-soft-4e6f {
    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;
}

.notice_b5c8 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.notice_b5c8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.primary-in-c78f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.primary-in-c78f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-dirty-d813 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hero-dirty-d813: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);
}

.hidden-317a {
    font-size: 1em;
    font-weight: 700;
}

.progress-brown-3863 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tall-e10b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tall-e10b::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;
}

.card-full-d5cc {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .card-full-d5cc {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gallery-b73a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pink-fa24 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.mask_ca3f {
    margin-bottom: 2rem;
}

.tall-071e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tall-071e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_down_47e3 {
    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);
}

.surface_e1c9 {
    font-size: 1.5rem;
}

.icon-over-1897 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.advanced_5e74 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-stone-ab6e {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.highlight-stone-ab6e:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gallery-74b0 {
    text-align: center;
    margin-bottom: 3rem;
}

.article-tall-afd7 {
    margin-bottom: 1rem;
}

.icon_9496 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.element-99d8 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .element-99d8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .element-99d8.sidebar_dark_05c6 {
        direction: rtl;
    }
    
    .element-99d8.sidebar_dark_05c6 > * {
        direction: ltr;
    }
}

.progress_center_b3fa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.progress_center_b3fa:first-child {
    margin-top: 0;
}

.surface_2ede {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.media_6328 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.media_6328:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.gold_9ba8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold_9ba8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_hovered_8d1a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-steel-6595 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.caption-14de {
    list-style: none;
}

.caption-14de li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-14de li:last-child {
    border-bottom: none;
}

/* Games Features */
.heading-4470 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.element-hard-c897 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mask_cool_de35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.down_8bd0 {
    margin: 2rem 0;
}

.dim_ff38 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.static-6065 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.old-f107 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.breadcrumb_962e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hero-dirty-b771 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-dirty-b771 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-selected-ab06 {
    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);
}

.tabs-selected-ab06:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal-d849 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.west-6103 {
    font-size: 1.5rem;
}

.copper-74e0 {
    color: var(--accent-color);
    margin: 0;
}

.accordion-96ed {
    list-style: none;
}

.accordion-96ed li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.accordion-96ed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.list_top_b969 {
    margin: 2rem 0;
}

.chip-light-2a86 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.out-7de3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .out-7de3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-428e {
    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);
}

.column_narrow_6df3 {
    font-size: 1.25rem;
}

.texture-8099 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.old-f2f6,
.footer-in-a80c {
    text-align: center;
    margin: 2rem 0;
}

.lite_ee9a,
.slow_c9ca {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.mask-878f {
    margin: 2rem 0;
    text-align: center;
}

.hover_d3e6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hover_d3e6::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;
}

.middle_71ce {
    position: relative;
    z-index: 1;
}

.menu_north_03ba {
    margin-bottom: 1rem;
}

.form-cold-7690 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-a754 {
    margin-bottom: 3rem;
}

.gallery_c7cb {
    margin-top: 3rem;
}

.nav-left-a7e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav-left-a7e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-left-a7e0 .slider_down_47e3 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_large_a59b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-c7dc {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.search-2f88 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.simple_b37a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .simple_b37a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple_b37a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.sidebar-ec3a {
    margin-bottom: 1rem;
}

.full_048f img {
    margin-bottom: 1rem;
}

.notification_small_cda2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_selected_edbc {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.list-f940 {
    list-style: none;
}

.list-f940 li {
    margin-bottom: 0.5rem;
}

.list-f940 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.list-f940 a:hover {
    color: var(--accent-color);
}

.fixed-9af2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popup_c7b8 {
    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);
}

.popup_c7b8:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.action-d1e4 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.action-d1e4 p {
    margin-bottom: 0.25rem;
}

.box-steel-debc {
    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) {
    .box-steel-debc {
        flex-direction: row;
    }
}

.clean_a09e {
    text-align: center;
}

@media (min-width: 768px) {
    .clean_a09e {
        text-align: left;
    }
}

.clean_a09e p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny-b4c4 {
    font-size: 0.75rem !important;
}

.accent-under-c057 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.disabled_dac1 {
    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);
    }
}

.focus-mini-2b64 {
    animation: fadeInUp 0.6s ease-out;
}

.tag_static_8831 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.thick_ec0c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_ec0c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.gold-93c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-93c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-a839 {
    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);
}

.description-a839 .mask_cool_de35 {
    font-size: 1.25rem;
}

.description-a839 .icon_fresh_31f8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.gas-c5cb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gas-c5cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_brown_2b1b {
    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);
}

.popup_brown_2b1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_2a8f {
    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);
}

.outline-paper-0986 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-left-c287 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-b05f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-pressed-fe3d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient-pressed-fe3d .bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient-pressed-fe3d .mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-f3e1 {
    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);
}

.item_first_5830 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.item_first_5830 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.item_first_5830 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.summary_lite_6d44 {
    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);
}

.picture-fast-4035 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.surface_gas_ecee {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.surface_gas_ecee label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.surface_gas_ecee 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);
}

.surface_gas_ecee input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.surface_gas_ecee input::placeholder {
    color: var(--text-muted);
}

.paragraph-red-8733 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu_inner_f689 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.menu_inner_f689 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hot-d96a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hot-d96a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.out-7de3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-7de3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-428e {
    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);
}

.current-428e .column_narrow_6df3 {
    font-size: 1.25rem;
}

.current-428e .texture-8099 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.breadcrumb-0341 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-7edb {
    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);
}

.wide-7edb .mask_cool_de35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-7edb .bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide-7edb .mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron-82c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_0918 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.container_0918 .focus-fixed-775b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_0918 .modal-motion-ac71 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right_07f6 {
    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);
}

.button_d60d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_d60d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_9e2a {
    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);
}

.component_9e2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_1850 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wide_d4f0 {
    flex: 1;
}

.wrapper-smooth-cac1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort-ee87 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.steel-a463 {
    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);
}

.steel-a463:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.thumbnail-af95 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-af95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_dark_a65d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel_dark_a65d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_4207 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_d475 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper-ad39 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.stone_4631 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.under_7c7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_be3b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_active_2818 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.icon_active_2818 .paragraph-white-dc6d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_active_2818 .mini-6e2f {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass-d055 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-859d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-05ee {
    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);
}

.disabled-05ee .mask_cool_de35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-05ee .bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-05ee .mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_2b4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_2b4f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_gold_1682 {
    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);
}

.pagination_gold_1682:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.highlight_a895 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_a895 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-b038 {
    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);
}

.border-b038:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-6c51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-black-faa6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.static-6065 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-north-03b7 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.aside_over_546a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-3f7f {
    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);
}

.hovered-3f7f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_bfbc {
    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);
}

.thumbnail-cf1b {
    flex: 1;
}

.cold_598b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.pink_16ab {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.static-76e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-3ac5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over-c727 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over-c727 .focus-fixed-775b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.over-c727 .modal-motion-ac71 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-in-a80c {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_26be {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_26be {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.outer_00bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_00bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-8e21 {
    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);
}

.background-8e21:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-fluid-c52b {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_c4cb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.medium-2c9f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.top_fbe0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow_bottom_f45e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_8da8 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item-d9d3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-blue-a06f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-tiny-bc37 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-859d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-05ee {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.disabled-05ee .bronze-5189 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-05ee .mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-last-6350 {
    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);
}

.active-silver-2b40 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active-silver-2b40 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-silver-2b40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_f1f3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outer_f1f3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_pressed_4a25 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.medium_cc6b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.top-b368 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.smooth-d2eb {
    padding: 1.5rem;
}

.tag-54b0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner_south_80c4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_south_80c4 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;
}

.banner_south_80c4 li:last-child {
    border-bottom: none;
}

.banner_south_80c4 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.row_motion_91f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_motion_91f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption_silver_bf44 {
    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);
}

.caption_silver_bf44:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.orange_7444 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim_4f8b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-1b4e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer-2bb2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon-4ed2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_4708 {
    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);
}

.highlight_over_8d0a {
    font-size: 2rem;
    flex-shrink: 0;
}

.brown-3751 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini-f21a {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_out_b039 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_new_d56f {
    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);
}

.hover_0b1c {
    text-align: center;
}

.pro_3713 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev-d998 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wood-1039 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-d04e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-d04e .bronze-5189 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-d04e .mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-024b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .over-024b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over-024b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_234b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid_234b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-under-8b38 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.button-8c81 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze-5189 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.media_1626 {
    padding: 1.5rem;
}

.mini-8727 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.media-fdb7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-fdb7 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;
}

.media-fdb7 li:last-child {
    border-bottom: none;
}

.media-fdb7 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.article_last_9b99 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.old-4f9a {
    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);
}

.old-4f9a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_stone_2ce7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north_4452 {
    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);
}

.clean_2a8f {
    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;
}

.outline-paper-0986 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-left-c287 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_d424 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_8698 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-focused-1449 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal-over-8377 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.item_hot_6cb7 {
    display: flex;
    gap: 1rem;
}

.item_hot_6cb7 .over-abcc {
    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;
}

.bright_23af {
    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);
}

.last_dd5a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.media-outer-8fad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-outer-8fad 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;
}

.media-outer-8fad li:last-child {
    border-bottom: none;
}

.media-outer-8fad li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.fixed-7edc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed-7edc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed-7edc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-1970 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.form-1970:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light-c1d3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_af8b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paragraph-white-dc6d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.focus-6df5 {
    font-size: 1rem;
}

.component_clean_363e {
    padding: 1.5rem;
}

.mini-6e2f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.backdrop_smooth_a8dd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.backdrop_smooth_a8dd .hover_0b1c {
    text-align: center;
}

.backdrop_smooth_a8dd .prev-d998 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.backdrop_smooth_a8dd .bottom_c621 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.module-669d {
    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);
}

.module-669d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.next_40b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_40b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_9062 {
    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);
}

.mask_9062:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade_8d97 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_d899 {
    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);
}

.summary_5c74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_9488 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.out-ca9f {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze-2aa5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption-blue-a796 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top_3c49 {
    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);
}

.icon_0237 {
    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;
}

.icon_0237.tag_steel_3e32 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.icon_0237.section_1168 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.icon_0237.thumbnail_dynamic_e65d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.icon_0237.gradient-hot-5bbb {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.icon_0237.focus_smooth_8eef {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.content_cool_ab56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paper_8d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-2bfc {
    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);
}

.media_883f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.iron-82c6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iron-82c6 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;
}

.iron-82c6 li:last-child {
    border-bottom: none;
}

.iron-82c6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.secondary-935d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary-935d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary-935d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-clean-83f9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.component-clean-83f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-clean-83f9.grid-e389 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .component-clean-83f9.grid-e389 {
        grid-column: span 3;
    }
}

.content_a0db {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.component-clean-83f9.grid-e389 .content_a0db {
    background: rgba(6, 182, 212, 0.1);
}

.pattern_basic_b0f3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pagination-118e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.component-clean-83f9.grid-e389 .pagination-118e {
    color: var(--info-color);
}

.footer_in_e6ac {
    padding: 1.5rem;
    text-align: center;
}

.image-static-00ce {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.component-clean-83f9.grid-e389 .image-static-00ce {
    color: var(--info-color);
}

.form-lower-c82d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.copper_0f84 {
    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 */
.carousel_6814 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_6814 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_c3a2 {
    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);
}

.media_c3a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-6a69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-7edb {
    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);
}

.column_narrow_6df3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_fast_e7e6 {
    flex: 1;
}

.chip-light-2a86 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_gas_35d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-lite-3b80 {
    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);
}

.table_large_0e0f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.full-2e0d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.disabled_dac1 {
    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);
}

.box_1590 {
  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);
}

.box_1590 .hover_0b1c {
    text-align: center;
}

.box_1590 .pro_3713 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.box_1590 .prev-d998 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.under-ea7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner-d9dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper_bceb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_16e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny_ce36 {
    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);
}

.current-5fd7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_f447 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-9b15 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-9b15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-9b15 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_33bc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.inner_33bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_eff8 {
    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);
}

.header-d3bb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.up-8100 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gold_1bf6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold_1bf6.right-ccca {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gold_1bf6.link-rough-ffb0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.gold_1bf6.gallery_7bd4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.backdrop-dim-f4fb {
    padding: 1.5rem;
    text-align: center;
}

.fixed-8160 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status-center-32fa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.status-center-32fa .popup_1d6d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.text_smooth_6a60 {
    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);
}

.text_smooth_6a60:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.primary-glass-cacf {
  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);
}

.column_6752 {
    text-align: center;
}

.column_6752 .pro_3713 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.column_6752 .prev-d998 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.widget-right-1507 { text-align: center; }
.container-huge-a77f { text-align: left; }
.highlight_a4d6 { text-align: right; }

.down-d2bb { margin-bottom: 0; }
.element-next-e369 { margin-bottom: 0.5rem; }
.tooltip-51ff { margin-bottom: 1rem; }
.last_2efb { margin-bottom: 1.5rem; }
.video_plasma_66e3 { margin-bottom: 2rem; }

.active_new_966f { margin-top: 0; }
.white_7ff2 { margin-top: 0.5rem; }
.slider-dirty-9a82 { margin-top: 1rem; }
.primary_1b14 { margin-top: 1.5rem; }
.progress_4fda { margin-top: 2rem; }

.fn-hidden-b9b8 { display: none; }
.fn-visible-b9b8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tall-e10b {
        padding: 6rem 0 3rem;
    }
    
    .card-full-d5cc {
        text-align: center;
    }
    
    .element-99d8 {
        text-align: center;
    }
    
    .tall-071e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .clean_a1dd,
    .picture-4414,
    .hover_d3e6,
    .search-2f88 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tall-e10b {
        background: none;
    }
}

/* Providers Section */
.pink-585e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_50aa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle_50aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle_50aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-5bd5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-5bd5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-hot-454e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer_dc6d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.iron_efdd {
    list-style: none;
    padding: 0;
}

.iron_efdd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.iron_efdd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.texture_hovered_870d {
    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);
}

.texture_hovered_870d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.red_bee2 {
    padding: var(--section-padding);
}

.badge-south-2bcd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-south-2bcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-0240 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-0240:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.link-plasma-e8b7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.rough-75a3 {
    display: flex;
    flex-direction: column;
}

.search-gold-7301 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.soft_fcdf {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.item-522a {
    color: var(--accent-color);
}

.wide_50c7 {
    font-size: 1.25rem;
}

.hover_6341 {
    margin-bottom: 1rem;
}

.hover_6341 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.thick_d7fa {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status_rough_2949 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hover_0b1c {
    text-align: center;
}

.pro_3713 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev-d998 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.backdrop_dirty_ccd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid_85e0 {
    margin: 2rem 0;
}

.green_8ecd {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.green_8ecd .mask_cool_de35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_easy_d073 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.right_3408 {
    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;
}

.right_3408:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature-ad31 {
    font-size: 2rem;
}

.bright_60ba {
    display: flex;
    flex-direction: column;
}

.full-4c3f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.badge-9881 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.icon_a3b3 {
    padding: var(--section-padding);
}

.title_selected_78d5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .title_selected_78d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title_selected_78d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-1e60 {
    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);
}

.black-1e60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.black-1e60 .pro_3713 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.black-1e60 .prev-d998 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.black-1e60 .gallery-0da3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.header-gold-6595 {
    margin-top: 4rem;
}

.wrapper-8677 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.accent-d3eb {
    overflow-x: auto;
}

.caption-b210 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.caption-b210 thead {
    background: var(--accent-color);
}

.caption-b210 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.caption-b210 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-b210 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.caption-b210 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.logo-right-5dc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-center-9ddc {
    max-width: 900px;
    margin: 0 auto;
}

.steel_bdc8 {
    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);
}

.steel_bdc8:hover {
    border-color: var(--accent-color);
}

.breadcrumb-wood-3e3a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.breadcrumb-wood-3e3a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.clean-6064 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.steel_bdc8.fn-active-b9b8 .clean-6064 {
    transform: rotate(45deg);
}

.content_down_e6a9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.steel_bdc8.fn-active-b9b8 .content_down_e6a9 {
    max-height: 1000px;
}

.content_down_e6a9 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.highlight_lower_ba40 {
    padding: var(--section-padding);
}

.item_first_5830 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.container_a113 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_4509 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_4509 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup_8df9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-6ea4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.description-3b2b {
    font-size: 2rem;
}

.green-bbb7 {
    color: var(--text-white);
    margin: 0;
}

.shadow_silver_15c9 {
    list-style: none;
    padding: 0;
}

.shadow_silver_15c9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow_silver_15c9 li:last-child {
    border-bottom: none;
}

.item_top_a2bc {
    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);
}

.item_top_a2bc p {
    color: var(--success-color);
    margin: 0;
}

.lite_d488 {
    margin-top: 3rem;
}

.last_dd5a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.narrow-e7e2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .narrow-e7e2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-paper-57ea {
    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);
}

.backdrop_dirty_e2e4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content-paper-57ea p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.button-8739 {
    padding: var(--section-padding);
}

.carousel_7942 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_7942 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-1d57 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.out-1d57:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hidden_white_c681 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon_left_db08 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.light_f79b {
    flex: 1;
}

.slow_56a6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.alert_rough_8ca3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.element_429e {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-clean-bcfc {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-clean-bcfc:last-child {
    border-bottom: none;
}

/* Comparison Section */
.narrow_2148 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.background-light-9471 {
    padding: var(--section-padding);
}

.link-35ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.info-72e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-72e8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-left-1d42 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_8765, .badge_cold_61a5, .outline-rough-bcd3 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.outline-rough-bcd3 {
    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 */
.disabled_new_4d7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold_cd2f {
    margin: 2rem 0;
}

.component-2858 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-99e1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outer-4606 {
    list-style: none;
    padding: 0;
}

.outer-4606 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;
}

.outer-4606 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.outer-4606 li:last-child {
    border-bottom: none;
}

.paragraph_15e5 {
    text-align: center;
    margin-top: 2rem;
}

.label-rough-2d46 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.orange-eda5 {
    padding: var(--section-padding);
}

.notice_6077 {
    margin: 2rem 0;
}

.right_d565 {
    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) {
    .right_d565 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.right_d565:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.lite_c833 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sidebar-dirty-91ba {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.image_right_f70e {
    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;
}

.section-23df {
    flex: 1;
}

.gradient-wood-c719 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hot-af19 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.article_45d1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.static-d266 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .static-d266 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.green-1cab {
    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);
}

.green-1cab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.green-1cab .pro_3713 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.green-1cab .prev-d998 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pagination-orange-8478 {
    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);
}

.easy_5f95 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.easy_5f95 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.secondary_under_f9da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .secondary_under_f9da {
        grid-template-columns: 1fr 1fr;
    }
}

.rough_b495 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected-cb71 {
    margin-bottom: 1.5rem;
}

.selected-cb71 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.selected-cb71 input,
.selected-cb71 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;
}

.selected-cb71 input:focus,
.selected-cb71 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tabs-old-230a {
    width: 100%;
    margin-top: 1rem;
}

.content_hard_8ab8 {
    display: flex;
    align-items: center;
}

.paragraph_slow_9b1b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.highlight_new_1cff {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.description_c01e {
    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;
}

.wood_930f {
    color: var(--text-gray);
}

.easy_2401 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.bottom-08d1 {
    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);
}

.bottom-08d1 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.pressed-caf7 {
    margin-top: 3rem;
}

.gallery_solid_99eb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.sidebar_150d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_lower_0c8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.description_b0b4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_b0b4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.full_0758 {
    padding: var(--section-padding);
}

.bronze_ccd5 {
    margin: 2rem 0;
}

.center_e7b9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.smooth-bee2 {
    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;
}

.smooth-bee2:hover, .smooth-bee2.fn-active-b9b8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.slow-277d {
    display: none;
}

.slow-277d.fn-active-b9b8 {
    display: block;
}

.bronze_725f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_1a72 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.nav-liquid-f0d3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.nav-liquid-f0d3 ul {
    list-style: none;
    padding: 0;
}

.nav-liquid-f0d3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.nav-liquid-f0d3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.white-3e3c {
    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 */
.surface_5096 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft_6f8c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_bronze_4251 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.full_23c7 {
    color: var(--accent-color);
    margin: 0;
}

.input-top-ef39 {
    display: flex;
    gap: 1.5rem;
}

.layout_black_174a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wide_dc6e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.selected_cea1 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected_cea1.label_8b55 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.selected_cea1.selected_dbf6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.selected_cea1.active_7c57 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.highlight_large_2d48 {
    margin-top: 2rem;
}

.pressed_02ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.motion_eaff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .motion_eaff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-e80a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.filter_ba4e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.card_dark_47bc {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.bronze_3c78 {
    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 */
.hover_04fd {
    padding: var(--section-padding);
}

.next-b002 {
    margin: 2rem 0;
}

.nav_f430 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.frame-stone-ed89 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.backdrop-ba29 {
    list-style: none;
    padding: 0;
}

.backdrop-ba29 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;
}

.backdrop-ba29 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.backdrop-ba29 li:last-child {
    border-bottom: none;
}

.status_c53c {
    margin: 2rem 0;
}

.widget_lower_cb7c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gallery_0e9b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_0e9b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.heading-aadb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-copper-da02 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search_a5bc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hover_purple_8ab6 {
    margin-top: 2rem;
}

.wrapper-smooth-cac1 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.active_fixed_fa6c {
    list-style: none;
    padding: 0;
}

.highlight-dark-0cff {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.highlight-dark-0cff a {
    color: var(--accent-color);
    text-decoration: none;
}

.highlight-dark-0cff a:hover {
    text-decoration: underline;
}

.over_4d05 {
    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 */
.steel_c76e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_9373 {
    margin: 2rem 0;
}

.sort_new_f605 {
    margin-bottom: 3rem;
}

.sort_new_f605 .left-99e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.fast-73cb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.secondary-cec7 {
    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);
}

.secondary-cec7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dropdown-7bb7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dropdown-7bb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown_46c0 {
    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 */
.hot_83f7 {
    padding: var(--section-padding);
}

.status-8bb6 {
    margin: 2rem 0;
}

.gold_54f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.status-plasma-cdab {
    overflow-x: auto;
    margin: 2rem 0;
}

.wide-2a21 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.modal-eaea {
    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;
}

.primary-prev-0254 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.shade_out_05fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .shade_out_05fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-841e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-841e .mask_cool_de35 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination-841e .bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo_fast_94a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.form_77c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_out_5086 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_out_5086 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom_eaf5 {
    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;
}

.bottom_eaf5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.orange-00e4 {
    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);
}

.tooltip_steel_902e {
    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;
}

.menu-5cfc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop_7732 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.pink_724c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.layout-west-1ff2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-blue-7960 {
    color: var(--text-white);
    font-weight: 600;
}

.row_2193 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary-129e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-129e .over-abcc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.alert-lite-8a2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-lite-8a2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white_a8cc {
    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);
}

.white_a8cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.white_a8cc .pro_3713 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white_a8cc .prev-d998 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hovered-800c {
    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);
}

.message_8fb4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.message_8fb4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.shadow_bottom_f45e {
    margin: 2rem 0;
}

.badge_8da8 {
    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);
}

.badge_8da8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.item-d9d3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice_b67f {
    flex: 1;
}

.chip-blue-a06f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-tiny-bc37 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.tabs-859d {
    margin: 2rem 0;
}

.disabled-05ee {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-05ee .bronze-5189 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.disabled-05ee .mini-8727 {
    color: var(--text-gray);
    margin: 0;
}

.detail-last-6350 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.detail-last-6350 .lite_ee9a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.photo_fast_94a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.info_bfbc {
    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;
}

.thumbnail-cf1b {
    flex: 1;
}

.pink_16ab {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.static-76e6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.clean_2a8f {
    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;
}

.card-d13d {
    flex: 1;
}

.outline-paper-0986 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feature-left-c287 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.paragraph-focused-1449 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.modal-over-8377 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.item_hot_6cb7 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.item_hot_6cb7 .over-abcc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bright_23af {
    margin-top: 2rem;
}

.bright_23af .last_dd5a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.small_9231 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_new_d56f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_new_d56f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_new_d56f .hover_0b1c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-1039 {
    margin: 2rem 0;
}

.primary-d04e {
    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 */
.backdrop_8944 {
    padding: var(--section-padding);
}

.media_1626 {
    margin-top: 1rem;
}

.media-fdb7 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.media-fdb7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.media-fdb7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.warm-d56e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_hovered_ea3b {
    margin: 2rem 0;
}

.pattern_3f55 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.feature-2d2b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.column_c09b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.frame_ccaf {
    margin: 2rem 0;
}

.badge_brown_7686 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.badge_brown_7686 .left-99e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-blue-b0a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal-blue-b0a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.west_da14 {
    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);
}

.dynamic-dc47 {
    color: var(--text-white);
    font-weight: 600;
}

.large_f80c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.banner_bronze_6b3a {
    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);
}

.banner_bronze_6b3a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.active_5bcf {
    padding: var(--section-padding);
}

.heading_3292 {
    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;
}

.heading_3292:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.message-6ea0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-6ea0 .backdrop_dirty_e2e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-6ea0 .primary-glass-49be {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.footer-ee93 {
    flex: 1;
}

.main_3cc3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hover_narrow_db65 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_narrow_db65 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hover_narrow_db65 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.shadow-a3da {
    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);
}

.shadow-a3da p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow-a3da strong {
    color: var(--warning-color);
}

/* Slots Section */
.surface-dynamic-47f3 {
    padding: var(--section-padding);
}

.under_7c7c {
    margin: 2rem 0;
}

/* Table Games Section */
.wrapper-7373 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone_be3b {
    margin: 2rem 0;
}

.icon_active_2818 {
    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);
}

.icon_active_2818:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.icon_active_2818 .paragraph-white-dc6d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_active_2818 .mini-6e2f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.glass-d055 {
    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);
}

.glass-d055 .lite_ee9a {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.list-medium-b2a8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-dynamic-c7f2 {
    margin: 2rem 0;
}

.surface-north-662c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_small_a3a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.north_1a5e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gas_1505 {
    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);
}

.gas_1505:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.gas_1505.fn-active-b9b8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper-dc42 {
    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);
}

.box-fe73 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box-fe73 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.left_bc40 {
    padding: var(--section-padding);
}

.basic-c788 {
    margin: 2rem 0;
}

.cool_ed94 {
    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);
}

.cool_ed94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cool_ed94 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.overlay-stale-96a7 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.surface-warm-14a6 {
    flex: 1;
}

.sidebar_7c8b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.middle-ce9b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.nav-upper-5965 {
    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;
}

.menu-iron-28a5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-cold-a7e8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cool_b057 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft_24c0 {
    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;
}

.soft_24c0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.down_5820 {
    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);
}

.dynamic_14e4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dynamic_14e4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.medium-2aa3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_665f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .short_665f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short_665f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_purple_8219 {
    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;
}

.overlay_purple_8219:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_blue_e63a {
    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;
}

.notice-dc15 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.message-lite-aeb9 {
    font-size: 2rem;
}

.filter-tall-23ca {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.header_large_7281 {
    flex: 1;
}

.gallery_7e6d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.section_b022 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dropdown-steel-ae5f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short_ab2b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label_last_c070 {
    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;
}

.middle_7c48 {
    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;
}

.middle_7c48:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.picture-advanced-718e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-bd66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_0b73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .alert_0b73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_9695 {
    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);
}

.silver_92f8 {
    color: var(--text-white);
    font-weight: 600;
}

.filter-57d9 {
    color: var(--accent-color);
    font-weight: 600;
}

.container_6d74 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.container_6d74 strong {
    color: var(--accent-color);
}

/* Security Section */
.detail_blue_94d0 {
    padding: var(--section-padding);
}

/* Benefits Section */
.east_9dfb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.over_6187 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.notice_current_8325 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny-6c5e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.bottom-9316 {
    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) {
    .bottom-9316 {
        flex-direction: column;
        gap: 1rem;
    }
}

.bottom-9316:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bottom-9316 .clean_2a8f {
    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;
}

.bottom-9316 .card-d13d {
    flex: 1;
}

.bottom-9316 .outline-paper-0986 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bottom-9316 .feature-left-c287 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.glass_bae4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_bae4 .chip-light-2a86 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass_bae4 .breadcrumb-0341 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glass_bae4 .breadcrumb-0341 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.glass_bae4 .breadcrumb-0341 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hero_pro_f77a {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.aside_b112 {
    padding: var(--section-padding);
}

.detail-fc3b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .detail-fc3b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-last-d036 {
    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);
}

.status-last-d036:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.status-last-d036 .column-6f2c {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-last-d036 .layout-f6fa {
    flex: 1;
}

.status-last-d036 .focus-fixed-775b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-last-d036 .hovered_a0e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.simple_eb2b {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple_eb2b .active_9f4d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple_eb2b .shade_953f {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.simple_eb2b .shade_953f 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);
}

.simple_eb2b .shade_953f li:last-child {
    border-bottom: none;
}

.simple_eb2b .shade_953f 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;
}

.simple_eb2b .shade_953f li strong {
    color: var(--text-white);
}

.shadow-iron-0a88 {
    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);
}

.shadow-iron-0a88 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow-iron-0a88 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.shadow_05f2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-822e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-822e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box-1bf0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-1bf0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element_b776 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary_large_293d {
    font-size: 2rem;
}

.sidebar_soft_9849 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.soft_8223 {
    flex: 1;
}

.shadow-upper-a785 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow-upper-a785 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shadow-upper-a785 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.paper_0640 {
    margin-top: 3rem;
}

.nav_f430 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.frame-stone-ed89 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop-ba29 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-ba29 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.backdrop-ba29 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.backdrop-ba29 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.progress-8acc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_d52c {
    margin: 2rem 0;
}

.active_rough_bb01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.active_rough_bb01 .left-99e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink_8599 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pink_8599 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wide-cf67 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.wide-cf67:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pressed_42cc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shadow_thick_a22c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.dirty_84b5 {
    padding: var(--section-padding);
}

.glass_160c {
    margin: 2rem 0;
}

.brown_fe05 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .brown_fe05 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown_fe05 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_6312 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hovered_6312:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notification_out_e0c1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pattern-663d {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.label-white-59b0 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.label-white-59b0.popup-large-9ebb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.grid-ef14 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.info-hovered-6164 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.disabled-prev-895a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.background-6935 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow-5277 {
    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);
}

.slow-5277 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow-5277 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.progress_33f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.top_909c {
    margin: 2rem 0;
}

.grid_58dd {
    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) {
    .grid_58dd {
        flex-direction: column;
        gap: 1rem;
    }
}

.grid_58dd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid_58dd::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);
}

.popup-bronze-b7f7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.accordion-f611 {
    flex: 1;
}

.right-a084 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pink_5a7b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink_5a7b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-over-b053 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_26dc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.static_dcc8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .static_dcc8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-prev-3e74 {
    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);
}

.dynamic_b059 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warm-3050 {
    flex: 1;
}

.card_dark_e5c7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.badge_middle_e118 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature_dirty_77b9 {
    margin-top: 2rem;
    text-align: center;
}

.carousel_f7d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel_f7d7 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.next_40b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_40b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_9062 {
    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);
}

.mask_9062:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mask_9062 .orange_7444 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_9062 .dim_4f8b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mask_9062 .card-1b4e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.mask_9062 .footer-2bb2 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.content-aff5 {
    padding: var(--section-padding);
}

.highlight_d899 .active_center_f022 {
    flex: 1;
}

/* Promo Calendar Section */
.panel-0ed0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_easy_8bcd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_easy_8bcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-dirty-31e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-ef51 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.simple-b25a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gas-b84a {
    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);
}

.heading-d5df {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs-current-b444 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.hard_3b55 {
    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);
}

.hard_3b55 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_3b55 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.mask-bronze-84fc {
    padding: var(--section-padding);
}

.right_1677 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right_1677 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.easy-6314 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_2a00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-8ed7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph-8ed7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-basic-9df8 {
    margin-top: 3rem;
}

.layout-basic-9df8 .nav_f430 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.layout-basic-9df8 .frame-stone-ed89 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-basic-9df8 .backdrop-ba29 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.layout-basic-9df8 .backdrop-ba29 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.layout-basic-9df8 .backdrop-ba29 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.layout-basic-9df8 .backdrop-ba29 li strong {
    color: var(--warning-color);
}

.status-4d5d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status-4d5d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.hidden-8bc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_fd55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_fd55 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-ba0b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-ba0b .left-99e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination_brown_d57a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.last_fa84 {
    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);
}

.last_fa84:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs-liquid-8b70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-42f8 {
    flex: 1;
}

.tabs_15f5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.motion_9f41 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.steel_803f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.image-9069 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.easy-4649 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .easy-4649 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_solid_e106 {
    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);
}

.sidebar_solid_e106:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb_focused_8b13 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface-de0a {
    color: var(--text-gray);
    font-size: 1rem;
}

.easy_5f95 {
    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);
}

.secondary-blue-539f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.secondary-blue-539f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.badge-c8e4 { 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; }
.highlight-stone-ab6e, .media_6328 { max-width:100%; height:auto; }

.tag_7159, .basic_86b4, .aside-soft-4e6f { white-space:normal; }

.card-full-d5cc,
.element-99d8,
.carousel_6814,
.next_40b4,
.tabs-859d,
.wrapper-9b15 {
  flex-wrap:wrap;
}

[class*="grid"],
.easy-4649,
.brown_fe05,
.nav-left-a7e0 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tall-e10b img,
.element-99d8 img,
.advanced_5e74 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gallery-b73a, .pink-fa24,
.article-tall-afd7, .icon_9496 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.accent-d3eb { width:100%; overflow-x:auto; }
.accent-d3eb table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.middle_50aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .middle_50aa {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.backdrop-5bd5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.title_selected_78d5,
.card-8f7d,
.element_6215,
.tiny_1a17,
.static-d266,
.easy-4649,
.brown_fe05,
.nav-left-a7e0,
.primary-glass-cacf,
.basic-c788,
.middle_50aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .title_selected_78d5,
  .card-8f7d,
  .element_6215,
  .tiny_1a17,
  .static-d266,
  .easy-4649,
  .brown_fe05,
  .nav-left-a7e0,
  .primary-glass-cacf,
  .basic-c788,
  .middle_50aa {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.black-1e60,
.green-1cab,
.sidebar_solid_e106,
.slider_down_47e3,
.hovered_6312,
.column_6752,
.cool_ed94,
.backdrop-5bd5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.advanced-af0b,
.gallery-56db,
.current-038b {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.advanced-af0b > *,
.gallery-56db > *,
.current-038b > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e10c */
.promo-block-j8 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
