/* {$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;
}

.lower_c926 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.light_b11a {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .light_b11a {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .light_b11a {
        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 */
.footer-aae2 {
    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);
}

.active-fe15 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .active-fe15 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .aside_narrow_e3f0 {
        grid-column: 1;
    }
    
    .background_soft_33ce {
        grid-column: 2;
    }
    
    .popup_under_4ec6 {
        grid-column: 3;
    }
}

.aside_narrow_e3f0 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.aside_narrow_e3f0:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav-23a1 {
    display: none;
}

@media (min-width: 1024px) {
    .nav-23a1 {
        display: block;
    }
}

/* Grouped Navigation */
.carousel-glass-b35b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.avatar-over-eafa {
    position: relative;
}

.gradient_mini_678f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.avatar-over-eafa .article_wood_d868 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.article_wood_d868 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.component-out-5d2c {
    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;
}

.component-out-5d2c:hover,
.component-out-5d2c.fn-active-9208 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.carousel-f969 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .carousel-f969 {
        display: flex;
    }
}

/* Mobile Register Button */
.background_soft_33ce {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .background_soft_33ce {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.purple-7ea0 {
    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;
}

.purple-7ea0::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 */
.popup_under_4ec6 {
    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) {
    .popup_under_4ec6 {
        display: none;
    }
}

.popup_under_4ec6 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.popup_under_4ec6.fn-active-9208 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.popup_under_4ec6.fn-active-9208 span:nth-child(2) {
    opacity: 0;
}

.popup_under_4ec6.fn-active-9208 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.image_51f1 {
    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;
}

.image_51f1.fn-active-9208 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.pro-6db7 {
    overflow: hidden;
}

.main-1e02 {
    list-style: none;
    padding: 0.75rem 0;
}

.purple-6ada {
    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;
}

.purple-6ada:hover,
.purple-6ada.fn-active-9208 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.purple-6ada.container_full_16e5 {
    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;
}

.purple-6ada.container_full_16e5::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 */
.picture-4d02 {
    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;
}

.warm-db73 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.warm-db73:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.popup_9c67 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.popup_9c67:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.bottom_a1d1 {
    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;
}

.bottom_a1d1:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.description-upper-0bf5 {
    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;
}

.status-white-1898 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.status-white-1898:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.banner-8a15 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.banner-8a15:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.popup_down_35ac {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.popup_down_35ac: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);
}

.pagination_pro_c7ba {
    font-size: 1em;
    font-weight: 700;
}

.status-rough-3cc4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.accent_cold_9a39 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.accent_cold_9a39::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;
}

.notice-f326 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .notice-f326 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.black-b0dc {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mask_e146 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.icon-south-43f4 {
    margin-bottom: 2rem;
}

.chip-90e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .chip-90e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-hard-8c10 {
    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);
}

.gallery-4e98 {
    font-size: 1.5rem;
}

.shade-7d9e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hover_e403 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-5732 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.thumbnail-5732:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.top_bfbc {
    text-align: center;
    margin-bottom: 3rem;
}

.heading_03be {
    margin-bottom: 1rem;
}

.backdrop-cdf1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.form_e58d {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .form_e58d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .form_e58d.header_931a {
        direction: rtl;
    }
    
    .form_e58d.header_931a > * {
        direction: ltr;
    }
}

.full_64da {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.full_64da:first-child {
    margin-top: 0;
}

.hover-wide-123f {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.block_9cc2 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.block_9cc2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.texture-smooth-5463 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-smooth-5463 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-0b67 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.feature_north_dfce {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paragraph-current-a2ea {
    list-style: none;
}

.paragraph-current-a2ea li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph-current-a2ea li:last-child {
    border-bottom: none;
}

/* Games Features */
.panel-f43c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.backdrop-b18b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.white-24fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.footer_f331 {
    margin: 2rem 0;
}

.hard-7fc4 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.main-easy-2ec1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.hover_tiny_a4f0 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pattern-9362 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.highlight-cold-5726 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-cold-5726 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-cdc3 {
    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);
}

.hovered-cdc3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_white_afd4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.liquid-3ede {
    font-size: 1.5rem;
}

.badge-west-937a {
    color: var(--accent-color);
    margin: 0;
}

.prev_822c {
    list-style: none;
}

.prev_822c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.prev_822c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.item_lower_1157 {
    margin: 2rem 0;
}

.black-dfd2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.liquid_5502 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .liquid_5502 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_f635 {
    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);
}

.over_73ae {
    font-size: 1.25rem;
}

.focused_ba7d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.nav-motion-43ee,
.new-8e4c {
    text-align: center;
    margin: 2rem 0;
}

.accordion_ea29,
.frame-out-05fe {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.light_ca5b {
    margin: 2rem 0;
    text-align: center;
}

.nav-4512 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-4512::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;
}

.panel_dirty_e1cc {
    position: relative;
    z-index: 1;
}

.small_0b44 {
    margin-bottom: 1rem;
}

.message_paper_a5be {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.panel-first-1f83 {
    margin-bottom: 3rem;
}

.button-gas-3d22 {
    margin-top: 3rem;
}

.summary_pressed_7160 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .summary_pressed_7160 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_pressed_7160 .widget-hard-8c10 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion_26bc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.brown-7d1b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.block_huge_3e48 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.green_7640 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .green_7640 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .green_7640 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.west_fc80 {
    margin-bottom: 1rem;
}

.caption_2395 img {
    margin-bottom: 1rem;
}

.pro-ef84 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-soft-ef00 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero_8dfe {
    list-style: none;
}

.hero_8dfe li {
    margin-bottom: 0.5rem;
}

.hero_8dfe a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero_8dfe a:hover {
    color: var(--accent-color);
}

.short_97bb {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.white-ae05 {
    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);
}

.white-ae05:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.summary-8320 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.summary-8320 p {
    margin-bottom: 0.25rem;
}

.highlight_59aa {
    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) {
    .highlight_59aa {
        flex-direction: row;
    }
}

.over-cecd {
    text-align: center;
}

@media (min-width: 768px) {
    .over-cecd {
        text-align: left;
    }
}

.over-cecd p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-4e94 {
    font-size: 0.75rem !important;
}

.aside-f322 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.active-2b82 {
    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);
    }
}

.primary-faf9 {
    animation: fadeInUp 0.6s ease-out;
}

.gas_69d5 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.icon-51c9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-51c9 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.menu_large_365a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_large_365a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_down_96e1 {
    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);
}

.paragraph_down_96e1 .white-24fb {
    font-size: 1.25rem;
}

.paragraph_down_96e1 .badge-next-4ac3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.active_dda8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_dda8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message_under_5434 {
    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);
}

.message_under_5434:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast_5f5d {
    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);
}

.slow_48e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link-0b71 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_old_a738 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-03eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-03eb .content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-03eb .modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_south_8904 {
    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);
}

.info-b9e8 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.info-b9e8 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info-b9e8 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.secondary_dirty_4932 {
    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);
}

.tooltip_narrow_38bf {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.outline_e398 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outline_e398 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline_e398 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);
}

.outline_e398 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.outline_e398 input::placeholder {
    color: var(--text-muted);
}

.footer-4e05 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.element-11a0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.element-11a0 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.panel-5f67 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.panel-5f67:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.liquid_5502 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_5502 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_f635 {
    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);
}

.hidden_f635 .over_73ae {
    font-size: 1.25rem;
}

.hidden_f635 .focused_ba7d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.dim_689a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_last_66c2 {
    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);
}

.pattern_last_66c2 .white-24fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_last_66c2 .content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_last_66c2 .modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_fc96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_north_de68 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_north_de68 .smooth-9fd6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_north_de68 .tag-wide-862a {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_3ed7 {
    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);
}

.heading_old_806a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading_old_806a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_5ff4 {
    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);
}

.description_5ff4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-2def {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thumbnail-active-fb0a {
    flex: 1;
}

.action_bf57 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dirty-3d5e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-over-f932 {
    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);
}

.row-over-f932:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.logo-dirty-19da {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-dirty-19da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-08f5 {
    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);
}

.gradient-08f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-6b3c {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_7e10 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popup-cool-a97d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hero-e054 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tiny_b180 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-tall-db28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_stone_2b83 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.container_stone_2b83 .link_plasma_bf15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_stone_2b83 .middle_0897 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_510b {
    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);
}

.module-06da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-179b {
    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);
}

.new-179b .white-24fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-179b .content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.new-179b .modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_3055 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_3055 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_9fd9 {
    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);
}

.pro_9fd9:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.link_middle_0efe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_middle_0efe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver-6bcc {
    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);
}

.silver-6bcc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_top_c780 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_action_24e8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-easy-2ec1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.accent-fresh-105b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.paragraph-c45a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_wood_2a08 {
    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);
}

.banner_wood_2a08:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron-cb8a {
    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);
}

.silver-6983 {
    flex: 1;
}

.summary_4749 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.logo_8896 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.element-f5a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav_brown_d27f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-right-da18 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-right-da18 .smooth-9fd6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-right-da18 .tag-wide-862a {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-8e4c {
    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);
}

.fixed_11de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_11de {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.picture_5f4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_5f4f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-cold-0bee {
    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-cold-0bee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down_2611 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro_8749 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main_yellow_8154 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav-af3f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph-glass-c07c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-last-2373 {
    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);
}

.component_cool_8d6c {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_tall_3e68 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_under_020b {
    color: var(--text-gray);
    line-height: 1.6;
}

.module-06da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-179b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.new-179b .content_96f8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.new-179b .modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_old_ea8f {
    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);
}

.south-7da1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .south-7da1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-7da1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-f896 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.purple-f896:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form_15c4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.container_031d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.element-lite-ec5c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gold-b12f {
    padding: 1.5rem;
}

.background-brown-f115 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advanced_be05 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced_be05 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;
}

.advanced_be05 li:last-child {
    border-bottom: none;
}

.advanced_be05 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.sidebar-white-733a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-white-733a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper_5f6b {
    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);
}

.copper_5f6b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_first_f45a {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_west_d28e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-easy-1235 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary-772a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-8f50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_0cfd {
    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);
}

.pagination_green_e4fd {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_6273 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_3d85 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-a28b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wrapper-eb92 {
    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);
}

.main_3363 {
    text-align: center;
}

.section_clean_dae7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini_0e18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider-80d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-purple-9bfe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-purple-9bfe .content_96f8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-purple-9bfe .modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-7d36 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .full-7d36 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .full-7d36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough_8e63 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.rough_8e63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_20c7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.prev-fa96 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.content_96f8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.detail_bottom_5af0 {
    padding: 1.5rem;
}

.modal-wide-92c3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal_615c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal_615c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.modal_615c li:last-child {
    border-bottom: none;
}

.modal_615c li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.popup-08d6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.widget_8a28 {
    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);
}

.widget_8a28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_dfc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-steel-f9e2 {
    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);
}

.fast_5f5d {
    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;
}

.slow_48e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-0b71 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-2d5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-7d1d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-dirty-8a74 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-in-6bf6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.table-9f50 {
    display: flex;
    gap: 1rem;
}

.table-9f50 .notice_1931 {
    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;
}

.fresh_a2a9 {
    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);
}

.panel-stone-e60f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.icon-liquid-7a88 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-liquid-7a88 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;
}

.icon-liquid-7a88 li:last-child {
    border-bottom: none;
}

.icon-liquid-7a88 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.filter_wood_02ed {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter_wood_02ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter_wood_02ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-hot-e654 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout-hot-e654:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_e9fa {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_0c89 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link_plasma_bf15 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.over_ca4e {
    font-size: 1rem;
}

.texture-large-5d97 {
    padding: 1.5rem;
}

.middle_0897 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.east-0a7a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.east-0a7a .main_3363 {
    text-align: center;
}

.east-0a7a .mini_0e18 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.east-0a7a .paragraph_a7ff {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tabs-bb69 {
    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);
}

.tabs-bb69:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.pagination-green-8ca0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-green-8ca0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-f4bf {
    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);
}

.module-f4bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_6fd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-black-ace4 {
    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);
}

.grid-869d {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-0195 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower_bc24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-small-7822 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dropdown_c706 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_d372 {
    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);
}

.section-old-2579 {
    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;
}

.section-old-2579.avatar-88fb {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.section-old-2579.title-red-7e34 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.section-old-2579.accordion-0bf1 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.section-old-2579.preview_4418 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.section-old-2579.avatar_3a39 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.under_0cb1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower-537b {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-current-f0a4 {
    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);
}

.layout_0b83 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature_fc96 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_fc96 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;
}

.feature_fc96 li:last-child {
    border-bottom: none;
}

.feature_fc96 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.dirty-77be {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dirty-77be {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty-77be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large-9f64 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.large-9f64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large-9f64.pink-e5c6 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .large-9f64.pink-e5c6 {
        grid-column: span 3;
    }
}

.frame-35da {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.large-9f64.pink-e5c6 .frame-35da {
    background: rgba(6, 182, 212, 0.1);
}

.primary_up_f3ec {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.current_884e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.large-9f64.pink-e5c6 .current_884e {
    color: var(--info-color);
}

.header_short_af75 {
    padding: 1.5rem;
    text-align: center;
}

.mask-narrow-483b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.large-9f64.pink-e5c6 .mask-narrow-483b {
    color: var(--info-color);
}

.primary_top_e03d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.list_motion_0972 {
    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 */
.iron_db51 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_db51 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-90bb {
    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);
}

.info-90bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first_b764 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_last_66c2 {
    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);
}

.over_73ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-action-5600 {
    flex: 1;
}

.black-dfd2 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_center_4483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-3af4 {
    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);
}

.item-soft-0b03 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.title-solid-194d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.active-2b82 {
    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);
}

.link_hot_ab62 {
  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);
}

.link_hot_ab62 .main_3363 {
    text-align: center;
}

.link_hot_ab62 .section_clean_dae7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.link_hot_ab62 .mini_0e18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb-tiny-17aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-5657 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-64e6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-de87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-0943 {
    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);
}

.tabs_ea80 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status-606e {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-brown-c865 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item-brown-c865 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item-brown-c865 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-orange-3fa2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-orange-3fa2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-b66d {
    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);
}

.highlight_c186 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget_37a5 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.layout_north_d9dd {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.layout_north_d9dd.sidebar_de4d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.layout_north_d9dd.menu_fb1e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.layout_north_d9dd.current_9fbe {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.pressed_5fa8 {
    padding: 1.5rem;
    text-align: center;
}

.status-simple-3340 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.steel_33ea {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.steel_33ea .selected_728d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.right_c164 {
    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);
}

.right_c164:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pro-1906 {
  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);
}

.title-4dbd {
    text-align: center;
}

.title-4dbd .section_clean_dae7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.title-4dbd .mini_0e18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.title-center-bdb0 { text-align: center; }
.progress-fresh-d8f5 { text-align: left; }
.advanced_6804 { text-align: right; }

.hero-tall-ae6d { margin-bottom: 0; }
.shade_bf5d { margin-bottom: 0.5rem; }
.accent-9270 { margin-bottom: 1rem; }
.accordion-ad75 { margin-bottom: 1.5rem; }
.banner-32a7 { margin-bottom: 2rem; }

.video_glass_3338 { margin-top: 0; }
.silver_978a { margin-top: 0.5rem; }
.hidden-lower-3ea5 { margin-top: 1rem; }
.filter_7d5c { margin-top: 1.5rem; }
.next-386a { margin-top: 2rem; }

.fn-hidden-9208 { display: none; }
.fn-visible-9208 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .accent_cold_9a39 {
        padding: 6rem 0 3rem;
    }
    
    .notice-f326 {
        text-align: center;
    }
    
    .form_e58d {
        text-align: center;
    }
    
    .chip-90e1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .footer-aae2,
    .image_51f1,
    .nav-4512,
    .block_huge_3e48 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .accent_cold_9a39 {
        background: none;
    }
}

/* Providers Section */
.smooth_ba48 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-12dc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-12dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern-12dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-6b11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion-6b11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description_db7b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.progress_cbc0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disabled-copper-113c {
    list-style: none;
    padding: 0;
}

.disabled-copper-113c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.disabled-copper-113c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.north_4d51 {
    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);
}

.north_4d51 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pink-bd34 {
    padding: var(--section-padding);
}

.iron_950d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_950d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-355c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.aside-355c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sidebar-slow-5b36 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hard-553e {
    display: flex;
    flex-direction: column;
}

.over-0b31 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.accordion_8349 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.middle_5a8d {
    color: var(--accent-color);
}

.paper-4870 {
    font-size: 1.25rem;
}

.box-gas-ff32 {
    margin-bottom: 1rem;
}

.box-gas-ff32 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hard_1c6f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.badge-52a5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.main_3363 {
    text-align: center;
}

.section_clean_dae7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini_0e18 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.shade-dim-6513 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_61fc {
    margin: 2rem 0;
}

.media-ad98 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.media-ad98 .white-24fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_bottom_421c {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dropdown-static-d869 {
    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;
}

.dropdown-static-d869:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top_fa30 {
    font-size: 2rem;
}

.summary_green_1924 {
    display: flex;
    flex-direction: column;
}

.border-black-3071 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo_e850 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.search_7ead {
    padding: var(--section-padding);
}

.warm-e34c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .warm-e34c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm-e34c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_8107 {
    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);
}

.texture_8107:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_8107 .section_clean_dae7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.texture_8107 .mini_0e18 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.texture_8107 .narrow-e5b0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.bright_d39f {
    margin-top: 4rem;
}

.fresh-af94 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.sort_65df {
    overflow-x: auto;
}

.message-815f {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.message-815f thead {
    background: var(--accent-color);
}

.message-815f th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.message-815f td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.message-815f tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.message-815f tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.progress-large-2781 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-0458 {
    max-width: 900px;
    margin: 0 auto;
}

.hidden_solid_3f1c {
    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);
}

.hidden_solid_3f1c:hover {
    border-color: var(--accent-color);
}

.sort-acb0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.sort-acb0 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.highlight-up-29fe {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hidden_solid_3f1c.fn-active-9208 .highlight-up-29fe {
    transform: rotate(45deg);
}

.frame-yellow-e7ff {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hidden_solid_3f1c.fn-active-9208 .frame-yellow-e7ff {
    max-height: 1000px;
}

.frame-yellow-e7ff p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.text-c947 {
    padding: var(--section-padding);
}

.info-b9e8 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.component_040e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-warm-f35d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-warm-f35d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel-4071 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-dirty-d7c5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fast_a980 {
    font-size: 2rem;
}

.solid-c0e4 {
    color: var(--text-white);
    margin: 0;
}

.medium-aa2e {
    list-style: none;
    padding: 0;
}

.medium-aa2e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium-aa2e li:last-child {
    border-bottom: none;
}

.avatar-liquid-8d96 {
    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);
}

.avatar-liquid-8d96 p {
    color: var(--success-color);
    margin: 0;
}

.tooltip-paper-9910 {
    margin-top: 3rem;
}

.panel-stone-e60f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.solid-50eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .solid-50eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge_5d5b {
    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);
}

.medium_9fc3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge_5d5b p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.red_864e {
    padding: var(--section-padding);
}

.gallery-a602 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-a602 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_old_cfa8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notification_old_cfa8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.filter_3509 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brown-ce20 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.center-4345 {
    flex: 1;
}

.search-tiny-d2f4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.mini_5cf9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.chip_5dd4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-new-e3c6 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.button-new-e3c6:last-child {
    border-bottom: none;
}

/* Comparison Section */
.status-simple-b2cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.accent-wood-a33a {
    padding: var(--section-padding);
}

.status_stone_11ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.text-b726 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-b726 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-fae9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lower_4004, .feature-bcd3, .logo-iron-893a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.logo-iron-893a {
    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 */
.article-5fc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_4b28 {
    margin: 2rem 0;
}

.focus_down_48ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_71f2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.down_134e {
    list-style: none;
    padding: 0;
}

.down_134e 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;
}

.down_134e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.down_134e li:last-child {
    border-bottom: none;
}

.complex-3648 {
    text-align: center;
    margin-top: 2rem;
}

.image-ebf0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.light_c416 {
    padding: var(--section-padding);
}

.picture_medium_548d {
    margin: 2rem 0;
}

.primary-7dd5 {
    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) {
    .primary-7dd5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.primary-7dd5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.brown_5066 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.article-left-d17b {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.photo_pro_05b3 {
    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;
}

.sidebar-c2fb {
    flex: 1;
}

.sort_f88d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.fixed_4711 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.description-pressed-edf3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.item-easy-1894 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .item-easy-1894 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.nav-hot-6d9f {
    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);
}

.nav-hot-6d9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.nav-hot-6d9f .section_clean_dae7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav-hot-6d9f .mini_0e18 {
    color: var(--text-gray);
    font-size: 1rem;
}

.panel_725a {
    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);
}

.layout_074f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.layout_074f strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.advanced_3b6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .advanced_3b6c {
        grid-template-columns: 1fr 1fr;
    }
}

.fluid-42ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_light_1ccf {
    margin-bottom: 1.5rem;
}

.tabs_light_1ccf label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tabs_light_1ccf input,
.tabs_light_1ccf 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;
}

.tabs_light_1ccf input:focus,
.tabs_light_1ccf select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.notification-plasma-a974 {
    width: 100%;
    margin-top: 1rem;
}

.shade_805f {
    display: flex;
    align-items: center;
}

.motion-893e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.content_glass_8113 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.overlay_north_72a0 {
    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;
}

.current_0296 {
    color: var(--text-gray);
}

.row-next-1d26 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.popup_f44b {
    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);
}

.popup_f44b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.secondary_a2ba {
    margin-top: 3rem;
}

.carousel_small_1ade {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.caption_copper_9151 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_e112 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.layout_easy_97cb {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout_easy_97cb:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.caption_b224 {
    padding: var(--section-padding);
}

.link_41e0 {
    margin: 2rem 0;
}

.description-b853 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tertiary-60fc {
    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;
}

.tertiary-60fc:hover, .tertiary-60fc.fn-active-9208 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard-5b63 {
    display: none;
}

.hard-5b63.fn-active-9208 {
    display: block;
}

.clean-dab8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_paper_48d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accordion-9465 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.accordion-9465 ul {
    list-style: none;
    padding: 0;
}

.accordion-9465 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.accordion-9465 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.photo-dirty-3aae {
    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 */
.orange-56e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_e1bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-07a9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.accent_huge_3db4 {
    color: var(--accent-color);
    margin: 0;
}

.rough-c0ed {
    display: flex;
    gap: 1.5rem;
}

.sort_0278 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active-1387 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.right-fb20 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.right-fb20.dynamic-6179 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.right-fb20.hero-d4c5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.right-fb20.purple_ce75 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accent_8c0e {
    margin-top: 2rem;
}

.thick_84c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dynamic_d203 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .dynamic_d203 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_30be {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.upper-10ff {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hidden-5ed5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.steel_df1f {
    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 */
.info-wide-3c02 {
    padding: var(--section-padding);
}

.action-2136 {
    margin: 2rem 0;
}

.image-fluid-f3cd {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.header_53f4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.iron-39a8 {
    list-style: none;
    padding: 0;
}

.iron-39a8 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;
}

.iron-39a8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.iron-39a8 li:last-child {
    border-bottom: none;
}

.avatar-copper-78d9 {
    margin: 2rem 0;
}

.hero-713e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.nav-03ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav-03ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface-9f02 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-last-5c9f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery_14f6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dark_b1a0 {
    margin-top: 2rem;
}

.action_bf57 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.static_9686 {
    list-style: none;
    padding: 0;
}

.caption-under-479c {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.caption-under-479c a {
    color: var(--accent-color);
    text-decoration: none;
}

.caption-under-479c a:hover {
    text-decoration: underline;
}

.shade-12a3 {
    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 */
.secondary-cf2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_12cd {
    margin: 2rem 0;
}

.gold-b762 {
    margin-bottom: 3rem;
}

.gold-b762 .table_71f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.right_adc9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav_8b0b {
    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);
}

.nav_8b0b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.east_eea0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .east_eea0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_stone_3649 {
    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 */
.overlay_easy_1b7a {
    padding: var(--section-padding);
}

.header_5ba3 {
    margin: 2rem 0;
}

.avatar_smooth_3004 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lite_6ece {
    overflow-x: auto;
    margin: 2rem 0;
}

.title-plasma-bdaa {
    background: rgba(6, 182, 212, 0.1) !important;
}

.bronze-6131 {
    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;
}

.caption_c70b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.disabled_south_9710 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .disabled_south_9710 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-hovered-4268 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-hovered-4268 .white-24fb {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.mask-hovered-4268 .content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy-90d4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.left-d965 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_3a1a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_3a1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-narrow-3ccd {
    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;
}

.mask-narrow-3ccd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pagination-current-d76d {
    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);
}

.grid-short-8039 {
    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;
}

.search_3aac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline_9c12 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.center-23f2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.south-71e0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-pressed-96b6 {
    color: var(--text-white);
    font-weight: 600;
}

.banner-c82d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border-87ef {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-87ef .notice_1931 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_tiny_b968 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture_tiny_b968 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_7971 {
    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);
}

.hard_7971:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard_7971 .section_clean_dae7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard_7971 .mini_0e18 {
    color: var(--text-gray);
    font-size: 1rem;
}

.next_ced9 {
    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);
}

.element-pink-6831 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.element-pink-6831 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.paragraph-glass-c07c {
    margin: 2rem 0;
}

.active-last-2373 {
    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);
}

.active-last-2373:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.component_cool_8d6c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-liquid-d6fc {
    flex: 1;
}

.secondary_tall_3e68 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_under_020b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.module-06da {
    margin: 2rem 0;
}

.new-179b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-179b .content_96f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.new-179b .modal-wide-92c3 {
    color: var(--text-gray);
    margin: 0;
}

.container_old_ea8f {
    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);
}

.container_old_ea8f .accordion_ea29 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.easy-90d4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.iron-cb8a {
    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;
}

.silver-6983 {
    flex: 1;
}

.logo_8896 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.element-f5a1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.fast_5f5d {
    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;
}

.static-e760 {
    flex: 1;
}

.slow_48e2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.link-0b71 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.accent-dirty-8a74 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.panel-in-6bf6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.table-9f50 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.table-9f50 .notice_1931 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh_a2a9 {
    margin-top: 2rem;
}

.fresh_a2a9 .panel-stone-e60f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.text_bronze_6273 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-eb92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper-eb92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-eb92 .main_3363 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-80d3 {
    margin: 2rem 0;
}

.component-purple-9bfe {
    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 */
.orange_a7f0 {
    padding: var(--section-padding);
}

.detail_bottom_5af0 {
    margin-top: 1rem;
}

.modal_615c {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.modal_615c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.modal_615c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.smooth_6472 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze-9d72 {
    margin: 2rem 0;
}

.surface-blue-ad5b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.steel_1567 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.icon-3ac8 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.box_a11b {
    margin: 2rem 0;
}

.caption_5bb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.caption_5bb0 .table_71f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box-motion-a35a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box-motion-a35a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shadow_purple_3d94 {
    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);
}

.paper-2055 {
    color: var(--text-white);
    font-weight: 600;
}

.tooltip_hovered_0250 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.aside-ebc9 {
    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);
}

.aside-ebc9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.dropdown-purple-17b2 {
    padding: var(--section-padding);
}

.old-6655 {
    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;
}

.old-6655:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.sort_58ed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort_58ed .medium_9fc3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_58ed .bronze-02d1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.feature-43c5 {
    flex: 1;
}

.label_simple_d613 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.progress_red_f940 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress_red_f940 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.progress_red_f940 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.feature_a4ef {
    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);
}

.feature_a4ef p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.feature_a4ef strong {
    color: var(--warning-color);
}

/* Slots Section */
.breadcrumb_f357 {
    padding: var(--section-padding);
}

.tiny_b180 {
    margin: 2rem 0;
}

/* Table Games Section */
.carousel_hovered_0893 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-tall-db28 {
    margin: 2rem 0;
}

.container_stone_2b83 {
    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);
}

.container_stone_2b83:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container_stone_2b83 .link_plasma_bf15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_stone_2b83 .middle_0897 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.overlay_510b {
    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);
}

.overlay_510b .accordion_ea29 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.preview-2ead {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-49fc {
    margin: 2rem 0;
}

.right_defc {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-smooth-8cc0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner_d101 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.center-18e0 {
    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);
}

.center-18e0:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.center-18e0.fn-active-9208 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-iron-2278 {
    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);
}

.pro-051b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pro-051b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.content-last-c12a {
    padding: var(--section-padding);
}

.message_7b9f {
    margin: 2rem 0;
}

.accent-ea50 {
    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);
}

.accent-ea50:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .accent-ea50 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.overlay-wide-2e1d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.search-static-138d {
    flex: 1;
}

.description_basic_7bbb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.plasma-8545 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.full-4a86 {
    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;
}

.rough-7fb7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.grid_09e5 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.text_under_6931 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-huge-ecf4 {
    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;
}

.thumbnail-huge-ecf4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.container-cool-da78 {
    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);
}

.thumbnail_pressed_0e60 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_pressed_0e60 strong {
    color: var(--accent-color);
}

/* New Games Section */
.pressed_ba89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_94bb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in_94bb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_94bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-d801 {
    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;
}

.notification-d801:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption_stale_cd89 {
    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;
}

.frame_d19d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.carousel_f398 {
    font-size: 2rem;
}

.tag_af8d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.east-9f43 {
    flex: 1;
}

.primary_cb12 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.paper-2bc4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.aside_cb35 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.east-09c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.slow_1b53 {
    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;
}

.box-yellow-2c47 {
    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;
}

.box-yellow-2c47:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.carousel-828e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-right-bdb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_369e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .article_369e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-37a3 {
    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);
}

.lower_69be {
    color: var(--text-white);
    font-weight: 600;
}

.list-aec8 {
    color: var(--accent-color);
    font-weight: 600;
}

.input_8e6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.input_8e6b strong {
    color: var(--accent-color);
}

/* Security Section */
.article-motion-dda2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.new-7aad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pattern_cedb {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.carousel_large_68ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-rough-8c8e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.easy-f2c7 {
    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) {
    .easy-f2c7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.easy-f2c7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy-f2c7 .fast_5f5d {
    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;
}

.easy-f2c7 .static-e760 {
    flex: 1;
}

.easy-f2c7 .slow_48e2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.easy-f2c7 .link-0b71 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.simple-f40c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-f40c .black-dfd2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple-f40c .dim_689a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-f40c .dim_689a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.simple-f40c .dim_689a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.narrow-1a37 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.modal-solid-36c5 {
    padding: var(--section-padding);
}

.hero_844b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero_844b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid-e471 {
    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);
}

.liquid-e471:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.liquid-e471 .static-1215 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid-e471 .east-b7ec {
    flex: 1;
}

.liquid-e471 .smooth-9fd6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid-e471 .fast-7f77 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.item_6c02 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_6c02 .module-blue-63b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item_6c02 .gradient_bright_a6d6 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.item_6c02 .gradient_bright_a6d6 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);
}

.item_6c02 .gradient_bright_a6d6 li:last-child {
    border-bottom: none;
}

.item_6c02 .gradient_bright_a6d6 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;
}

.item_6c02 .gradient_bright_a6d6 li strong {
    color: var(--text-white);
}

.picture_old_7141 {
    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);
}

.picture_old_7141 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture_old_7141 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.prev_b0ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-paper-e89e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notice-paper-e89e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown_8717 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_8717:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static-39c5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-first-4947 {
    font-size: 2rem;
}

.chip_7333 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.next_75df {
    flex: 1;
}

.small_0488 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small_0488 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.small_0488 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.container_5e98 {
    margin-top: 3rem;
}

.image-fluid-f3cd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.header_53f4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.iron-39a8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iron-39a8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.iron-39a8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.iron-39a8 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.thumbnail-focused-54df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-6b88 {
    margin: 2rem 0;
}

.brown_5bb7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.brown_5bb7 .table_71f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_8166 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .large_8166 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider_dirty_0ecd {
    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);
}

.slider_dirty_0ecd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.overlay-old-fd13 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.active-0009 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tabs_medium_b43c {
    padding: var(--section-padding);
}

.main-selected-5865 {
    margin: 2rem 0;
}

.column_8cd2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .column_8cd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_8cd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot_cb30 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hot_cb30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.lite_78fd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.old-5596 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.frame-iron-5547 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.frame-iron-5547.backdrop-basic-4201 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.stone-a7fc {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.content-f345 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.main_outer_8ae6 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_bc96 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fluid_2216 {
    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);
}

.fluid_2216 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fluid_2216 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.overlay_wood_4fc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-copper-7c9b {
    margin: 2rem 0;
}

.bronze-95b3 {
    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) {
    .bronze-95b3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.bronze-95b3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bronze-95b3::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);
}

.pattern_0134 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.brown_f490 {
    flex: 1;
}

.avatar-6cb8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wrapper_black_7193 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_black_7193 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_green_63a3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-hard-7782 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-a396 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .item-a396 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_2286 {
    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);
}

.surface-cad8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-34a0 {
    flex: 1;
}

.left_f9d3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.item-8412 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tertiary-copper-c2bb {
    margin-top: 2rem;
    text-align: center;
}

.upper-123a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.upper-123a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.pagination-green-8ca0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-green-8ca0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-f4bf {
    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);
}

.module-f4bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.module-f4bf .header_first_f45a {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-f4bf .breadcrumb_west_d28e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.module-f4bf .list-easy-1235 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.module-f4bf .summary-772a {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.primary_gold_d0c6 {
    padding: var(--section-padding);
}

.media-black-ace4 .inner_52e7 {
    flex: 1;
}

/* Promo Calendar Section */
.texture_tall_6e26 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-e9d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot-e9d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_liquid_061f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_6380 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.steel_1b85 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.orange-0950 {
    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);
}

.pro-cb11 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text-4e36 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.search_prev_78f3 {
    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);
}

.search_prev_78f3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_prev_78f3 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.caption-current-379d {
    padding: var(--section-padding);
}

.summary_ffae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .summary_ffae {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hover_solid_1773 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-b93e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mini_ecd7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini_ecd7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.center-ad3e {
    margin-top: 3rem;
}

.center-ad3e .image-fluid-f3cd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.center-ad3e .header_53f4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center-ad3e .iron-39a8 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.center-ad3e .iron-39a8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.center-ad3e .iron-39a8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.center-ad3e .iron-39a8 li strong {
    color: var(--warning-color);
}

.layout_5ee5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_5ee5 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.shade-9f74 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-553a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-553a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo_tiny_1b18 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_tiny_1b18 .table_71f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.block_b73b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focused-ea11 {
    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);
}

.focused-ea11:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.info_4b31 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-5d7c {
    flex: 1;
}

.card-8c14 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.popup-7302 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notification_d2ee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.block-480e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.article_black_3d9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .article_black_3d9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-2a18 {
    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);
}

.accordion-2a18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module-advanced-fa41 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video_a00d {
    color: var(--text-gray);
    font-size: 1rem;
}

.layout_074f {
    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);
}

.outer_8b28 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.outer_8b28 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.light_b11a { 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; }
.thumbnail-5732, .block_9cc2 { max-width:100%; height:auto; }

.picture-4d02, .bottom_a1d1, .description-upper-0bf5 { white-space:normal; }

.notice-f326,
.form_e58d,
.iron_db51,
.pagination-green-8ca0,
.module-06da,
.item-brown-c865 {
  flex-wrap:wrap;
}

[class*="grid"],
.article_black_3d9d,
.column_8cd2,
.summary_pressed_7160 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.accent_cold_9a39 img,
.form_e58d img,
.hover_e403 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.black-b0dc, .mask_e146,
.heading_03be, .backdrop-cdf1 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.sort_65df { width:100%; overflow-x:auto; }
.sort_65df table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.pattern-12dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .pattern-12dc {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.accordion-6b11 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.warm-e34c,
.texture_840c,
.status_simple_6ac7,
.logo-lower-303f,
.item-easy-1894,
.article_black_3d9d,
.column_8cd2,
.summary_pressed_7160,
.pro-1906,
.message_7b9f,
.pattern-12dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .warm-e34c,
  .texture_840c,
  .status_simple_6ac7,
  .logo-lower-303f,
  .item-easy-1894,
  .article_black_3d9d,
  .column_8cd2,
  .summary_pressed_7160,
  .pro-1906,
  .message_7b9f,
  .pattern-12dc {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.texture_8107,
.nav-hot-6d9f,
.accordion-2a18,
.widget-hard-8c10,
.hot_cb30,
.title-4dbd,
.accent-ea50,
.accordion-6b11 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.search_8488,
.layout_paper_2de5,
.popup-solid-5df0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.search_8488 > *,
.layout_paper_2de5 > *,
.popup-solid-5df0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e192 */
.phantom-card-n0 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
