/* {$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;
}

.tiny-12f9 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.pattern-7531 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .pattern-7531 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pattern-7531 {
        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 */
.background-hovered-1bff {
    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);
}

.form_9328 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .form_9328 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .next-9706 {
        grid-column: 1;
    }
    
    .short_61bc {
        grid-column: 2;
    }
    
    .pressed_7d87 {
        grid-column: 3;
    }
}

.next-9706 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.next-9706:hover img {
    transform: scale(1.05);
}

/* Navigation */
.fluid-b982 {
    display: none;
}

@media (min-width: 1024px) {
    .fluid-b982 {
        display: block;
    }
}

/* Grouped Navigation */
.thumbnail-61f1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.caption_e442 {
    position: relative;
}

.rough_3c16 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.caption_e442 .full-6ffc {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.full-6ffc {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.prev_4fbf {
    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;
}

.prev_4fbf:hover,
.prev_4fbf.fn-active-b2a3 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.top_31ee {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .top_31ee {
        display: flex;
    }
}

/* Mobile Register Button */
.short_61bc {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .short_61bc {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.outer_52f6 {
    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;
}

.outer_52f6::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 */
.pressed_7d87 {
    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) {
    .pressed_7d87 {
        display: none;
    }
}

.pressed_7d87 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.pressed_7d87.fn-active-b2a3 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.pressed_7d87.fn-active-b2a3 span:nth-child(2) {
    opacity: 0;
}

.pressed_7d87.fn-active-b2a3 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tall_99f5 {
    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;
}

.tall_99f5.fn-active-b2a3 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.breadcrumb_hovered_f1e9 {
    overflow: hidden;
}

.photo_2640 {
    list-style: none;
    padding: 0.75rem 0;
}

.nav_mini_6b6d {
    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;
}

.nav_mini_6b6d:hover,
.nav_mini_6b6d.fn-active-b2a3 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.nav_mini_6b6d.black_7944 {
    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;
}

.nav_mini_6b6d.black_7944::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 */
.widget_dim_bd4d {
    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;
}

.accordion_smooth_2a23 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.accordion_smooth_2a23:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.dynamic_c005 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.dynamic_c005:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.right-b806 {
    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;
}

.right-b806:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.notice-east-6b1d {
    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;
}

.container_d11d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.container_d11d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fresh-a089 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fresh-a089:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.brown_b288 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.brown_b288: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);
}

.tooltip_8249 {
    font-size: 1em;
    font-weight: 700;
}

.sidebar-hard-13fd {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dark-9a48 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dark-9a48::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;
}

.article-inner-1f76 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .article-inner-1f76 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gas_88e8 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.notification_e40a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.overlay_fluid_bf0e {
    margin-bottom: 2rem;
}

.plasma-9272 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .plasma-9272 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_thick_a88d {
    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);
}

.wide-9bd6 {
    font-size: 1.5rem;
}

.red-7444 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tertiary-0bb8 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chip-white-5be7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.chip-white-5be7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.element_left_aedb {
    text-align: center;
    margin-bottom: 3rem;
}

.container-last-9077 {
    margin-bottom: 1rem;
}

.selected-d3d7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.text_1ba0 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .text_1ba0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .text_1ba0.plasma-c3f5 {
        direction: rtl;
    }
    
    .text_1ba0.plasma-c3f5 > * {
        direction: ltr;
    }
}

.up_0aad {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.up_0aad:first-child {
    margin-top: 0;
}

.block_hard_77d6 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cold-7d1e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cold-7d1e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.current-ab19 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-ab19 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-9fec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.steel-c961 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.simple-9cd9 {
    list-style: none;
}

.simple-9cd9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-9cd9 li:last-child {
    border-bottom: none;
}

/* Games Features */
.link_gold_6b0d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.motion-4323 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pressed_379c {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.photo-cold-7397 {
    margin: 2rem 0;
}

.tag_cold_02d7 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.module-a401 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.carousel_6fa6 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.medium-b854 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.text_dda9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_dda9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper_68cc {
    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);
}

.upper_68cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.form-dirty-9b16 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar_68f8 {
    font-size: 1.5rem;
}

.carousel-complex-b3e8 {
    color: var(--accent-color);
    margin: 0;
}

.item_hard_e138 {
    list-style: none;
}

.item_hard_e138 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.item_hard_e138 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.image-eede {
    margin: 2rem 0;
}

.section-easy-0017 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tooltip_f052 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tooltip_f052 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-14ec {
    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);
}

.feature-4c8b {
    font-size: 1.25rem;
}

.widget_last_2ba7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.gradient_976a,
.basic-6002 {
    text-align: center;
    margin: 2rem 0;
}

.alert_old_8d7a,
.left-2d6b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.selected-2fdc {
    margin: 2rem 0;
    text-align: center;
}

.row_e4e3 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.row_e4e3::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;
}

.popup_1c91 {
    position: relative;
    z-index: 1;
}

.secondary-e50a {
    margin-bottom: 1rem;
}

.slider_2e51 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paragraph_new_8ba0 {
    margin-bottom: 3rem;
}

.carousel_pro_51c7 {
    margin-top: 3rem;
}

.sort_02ba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sort_02ba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_02ba .module_thick_a88d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-3917 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface-da6e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.fixed-1aad {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.chip_next_7b1f {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .chip_next_7b1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip_next_7b1f {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notice-811a {
    margin-bottom: 1rem;
}

.soft_466d img {
    margin-bottom: 1rem;
}

.column_974b {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-56cc {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thick_6c4e {
    list-style: none;
}

.thick_6c4e li {
    margin-bottom: 0.5rem;
}

.thick_6c4e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.thick_6c4e a:hover {
    color: var(--accent-color);
}

.green-918b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.secondary_active_ff5d {
    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);
}

.secondary_active_ff5d:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.video-hovered-f23c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.video-hovered-f23c p {
    margin-bottom: 0.25rem;
}

.gold-3f1f {
    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) {
    .gold-3f1f {
        flex-direction: row;
    }
}

.soft_d3a2 {
    text-align: center;
}

@media (min-width: 768px) {
    .soft_d3a2 {
        text-align: left;
    }
}

.soft_d3a2 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_ae08 {
    font-size: 0.75rem !important;
}

.left-b88d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.grid-north-9c31 {
    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);
    }
}

.mask_advanced_a7d5 {
    animation: fadeInUp 0.6s ease-out;
}

.hot_e840 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.avatar-36cf {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-36cf {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.grid-52df {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-52df {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_pressed_c6f0 {
    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);
}

.gallery_pressed_c6f0 .pressed_379c {
    font-size: 1.25rem;
}

.gallery_pressed_c6f0 .summary-478f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.caption_feb4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_feb4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_outer_6d81 {
    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);
}

.overlay_outer_6d81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full-5ea7 {
    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);
}

.label_09ff {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image-cold-b054 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_west_300d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-aaf8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.brown-aaf8 .box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.brown-aaf8 .image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_hard_ff06 {
    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);
}

.picture-inner-5888 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.picture-inner-5888 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.picture-inner-5888 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.south_35b3 {
    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);
}

.simple-4fc9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.light_185d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.light_185d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.light_185d 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);
}

.light_185d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.light_185d input::placeholder {
    color: var(--text-muted);
}

.nav-bright-9030 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter_in_0e6f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.filter_in_0e6f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.feature-3c5e {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.feature-3c5e:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tooltip_f052 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_f052 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-14ec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.current-14ec .feature-4c8b {
    font-size: 1.25rem;
}

.current-14ec .widget_last_2ba7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.dirty_b361 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-complex-7edb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient-complex-7edb .pressed_379c {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-complex-7edb .box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gradient-complex-7edb .image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_7597 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_4850 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_4850 .status_6b5e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar_4850 .top_8204 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-428a {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-56da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last-56da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_thick_8c7f {
    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);
}

.photo_thick_8c7f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form-b027 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.search-3b02 {
    flex: 1;
}

.bottom-dc8b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status_dim_5830 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active-gas-a5d8 {
    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);
}

.active-gas-a5d8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.thumbnail-wide-f766 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-wide-f766 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_stale_e4dc {
    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);
}

.icon_stale_e4dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-out-6f33 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-east-2eb8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-white-e7ea {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.slow_d492 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.panel_lower_a04a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_8b4c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_silver_e323 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_silver_e323 .dynamic-c3c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_silver_e323 .modal_28ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_full_4c97 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_soft_c3f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-cea4 {
    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);
}

.layout-cea4 .pressed_379c {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-cea4 .box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout-cea4 .image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_9e7f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_9e7f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-85c9 {
    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);
}

.tabs-85c9:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.section-motion-477a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-motion-477a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-08f1 {
    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);
}

.icon-08f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle-8776 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_0871 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-a401 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.label-eab1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.feature_0935 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_f515 {
    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);
}

.mask_f515:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-6fd8 {
    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);
}

.media-6ba7 {
    flex: 1;
}

.heading_copper_615b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.texture_inner_f6fd {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.red-0775 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_a60c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-b7fd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-b7fd .status_6b5e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thumbnail-b7fd .top_8204 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-6002 {
    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);
}

.paragraph-1242 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-1242 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.dark_ff48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark_ff48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-7919 {
    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);
}

.video-7919:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-da7d {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_ee05 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.under-3fd6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.header-paper-b2c3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_wood_f90b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.under_70eb {
    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);
}

.aside_87ed {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-copper-961b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.west_a4bd {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_soft_c3f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-cea4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.layout-cea4 .box-large-92b6 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout-cea4 .image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-3069 {
    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);
}

.image-c504 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image-c504 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-c504 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma_00c1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.plasma_00c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_pressed_6e0a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.lower_f48b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.filter_top_dc56 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip_f358 {
    padding: 1.5rem;
}

.old_cd63 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.outline_medium_3e79 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_medium_3e79 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;
}

.outline_medium_3e79 li:last-child {
    border-bottom: none;
}

.outline_medium_3e79 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.fluid-bbd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-bbd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_paper_c5cc {
    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_paper_c5cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-76c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-0cf0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter_218b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.image-17e5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text_under_dde2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_16f3 {
    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-e538 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_3bdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron-f899 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_tiny_b7d0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary_next_0e2e {
    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);
}

.aside_dc9f {
    text-align: center;
}

.dropdown_0822 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert-focused-9844 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hidden-up-e2e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_brown_3bad {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_brown_3bad .box-large-92b6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled_brown_3bad .image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-bronze-2309 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-bronze-2309 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-bronze-2309 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_e161 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery_e161:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_ce1e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed-69b2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.box-large-92b6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.status_gold_17a9 {
    padding: 1.5rem;
}

.image-ffc0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-5f29 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-5f29 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;
}

.text-5f29 li:last-child {
    border-bottom: none;
}

.text-5f29 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.panel-00e7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.section-wide-70ae {
    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);
}

.section-wide-70ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider_33f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_3c19 {
    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);
}

.full-5ea7 {
    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;
}

.label_09ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image-cold-b054 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip_394c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-c084 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.element_147d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs-huge-79ba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.caption_pro_abc2 {
    display: flex;
    gap: 1rem;
}

.caption_pro_abc2 .filter_red_3107 {
    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;
}

.preview-d4ed {
    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);
}

.hero-8675 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.input_4d12 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input_4d12 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;
}

.input_4d12 li:last-child {
    border-bottom: none;
}

.input_4d12 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.description-warm-159f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description-warm-159f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description-warm-159f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-warm-9238 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.logo-warm-9238:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-4bdc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_south_5cbb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dynamic-c3c8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.wrapper_b1ef {
    font-size: 1rem;
}

.first_1e93 {
    padding: 1.5rem;
}

.modal_28ec {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.wrapper_over_a93f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.wrapper_over_a93f .aside_dc9f {
    text-align: center;
}

.wrapper_over_a93f .alert-focused-9844 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.wrapper_over_a93f .disabled-7199 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status_soft_f564 {
    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);
}

.status_soft_f564:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.sidebar_pro_9ce4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_pro_9ce4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_c7f2 {
    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);
}

.tiny_c7f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in-662a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_a897 {
    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);
}

.wood-84df {
    font-size: 2rem;
    flex-shrink: 0;
}

.black_c2b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-hard-7b0e {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_f821 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focused-28f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_920a {
    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);
}

.column_west_23ff {
    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;
}

.column_west_23ff.search-cb56 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.column_west_23ff.glass-7313 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.column_west_23ff.nav-slow-254b {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.column_west_23ff.label_smooth_8eda {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.column_west_23ff.aside_f52c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.frame_c0e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-fddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-ea50 {
    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);
}

.chip_a6a4 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.highlight_7597 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight_7597 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;
}

.highlight_7597 li:last-child {
    border-bottom: none;
}

.highlight_7597 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.outline-focused-6e78 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline-focused-6e78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline-focused-6e78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-current-54e3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay-current-54e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-current-54e3.bronze-f27b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .overlay-current-54e3.bronze-f27b {
        grid-column: span 3;
    }
}

.thumbnail_a9f1 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.overlay-current-54e3.bronze-f27b .thumbnail_a9f1 {
    background: rgba(6, 182, 212, 0.1);
}

.in-0de3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.item_c46d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.overlay-current-54e3.bronze-f27b .item_c46d {
    color: var(--info-color);
}

.breadcrumb-089d {
    padding: 1.5rem;
    text-align: center;
}

.aside_bright_f30c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.overlay-current-54e3.bronze-f27b .aside_bright_f30c {
    color: var(--info-color);
}

.notification-white-c881 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-blue-77f9 {
    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 */
.lower-fef7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower-fef7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-0e64 {
    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);
}

.advanced-0e64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short-c47d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-complex-7edb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-4c8b {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-5f45 {
    flex: 1;
}

.section-easy-0017 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel_bdf0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-33ba {
    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);
}

.block_bronze_0bda {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-6b84 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.grid-north-9c31 {
    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);
}

.shadow_7776 {
  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);
}

.shadow_7776 .aside_dc9f {
    text-align: center;
}

.shadow_7776 .dropdown_0822 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.shadow_7776 .alert-focused-9844 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue-9cd8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-green-3ba7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_brown_e376 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-in-ce47 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_motion_d9bf {
    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);
}

.focus_219e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last_a900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold_c266 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cold_c266 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold_c266 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_4ee1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter_4ee1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-bronze-4b4a {
    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);
}

.static_e682 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.description-black-d1af {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.popup-5e58 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-5e58.fresh-3342 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.popup-5e58.banner_complex_1ae6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.popup-5e58.filter_north_94a8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.purple_f92d {
    padding: 1.5rem;
    text-align: center;
}

.in_e815 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disabled-black-1036 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.disabled-black-1036 .feature_basic_d3fa {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.sort-static-809c {
    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);
}

.sort-static-809c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gold-cd1f {
  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);
}

.info_dd76 {
    text-align: center;
}

.info_dd76 .dropdown_0822 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.info_dd76 .alert-focused-9844 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.warm_85ca { text-align: center; }
.input_3b3b { text-align: left; }
.wrapper_c974 { text-align: right; }

.notice-dd50 { margin-bottom: 0; }
.mask-ac9b { margin-bottom: 0.5rem; }
.paragraph-east-a70f { margin-bottom: 1rem; }
.nav-silver-9695 { margin-bottom: 1.5rem; }
.row_940b { margin-bottom: 2rem; }

.filter_2cfc { margin-top: 0; }
.video-down-ddfb { margin-top: 0.5rem; }
.mask_plasma_926e { margin-top: 1rem; }
.block_fixed_be40 { margin-top: 1.5rem; }
.east_50d4 { margin-top: 2rem; }

.fn-hidden-b2a3 { display: none; }
.fn-visible-b2a3 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dark-9a48 {
        padding: 6rem 0 3rem;
    }
    
    .article-inner-1f76 {
        text-align: center;
    }
    
    .text_1ba0 {
        text-align: center;
    }
    
    .plasma-9272 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .background-hovered-1bff,
    .tall_99f5,
    .row_e4e3,
    .fixed-1aad {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dark-9a48 {
        background: none;
    }
}

/* Providers Section */
.gold-1c2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-866d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-866d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-866d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_e6b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.basic_e6b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main_4d2c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.column_2360 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-0535 {
    list-style: none;
    padding: 0;
}

.mask-0535 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask-0535 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.in_a2e9 {
    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);
}

.in_a2e9 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.detail_2e51 {
    padding: var(--section-padding);
}

.grid_0413 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_0413 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info_01bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info_01bb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.modal_bfb7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.slider-medium-0e25 {
    display: flex;
    flex-direction: column;
}

.filter_1f20 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.header-10e5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tall_8f4b {
    color: var(--accent-color);
}

.hidden-7815 {
    font-size: 1.25rem;
}

.huge-18b3 {
    margin-bottom: 1rem;
}

.huge-18b3 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.dim-3a2b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.texture_medium_2296 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.aside_dc9f {
    text-align: center;
}

.dropdown_0822 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert-focused-9844 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.tertiary_666b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_stone_5d09 {
    margin: 2rem 0;
}

.video-c9ef {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.video-c9ef .pressed_379c {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_narrow_a795 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.full_db61 {
    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;
}

.full_db61:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slow_d1ca {
    font-size: 2rem;
}

.solid_1b5b {
    display: flex;
    flex-direction: column;
}

.hovered-7735 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.lite_8441 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.layout-right-04bc {
    padding: var(--section-padding);
}

.simple_746c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .simple_746c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple_746c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-selected-7943 {
    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);
}

.popup-selected-7943:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-selected-7943 .dropdown_0822 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.popup-selected-7943 .alert-focused-9844 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.popup-selected-7943 .fast_1c68 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.button-hovered-3e25 {
    margin-top: 4rem;
}

.notification_red_794c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.caption_old_7891 {
    overflow-x: auto;
}

.background_5a68 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.background_5a68 thead {
    background: var(--accent-color);
}

.background_5a68 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.background_5a68 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.background_5a68 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.background_5a68 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.gas_e2ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge-17c9 {
    max-width: 900px;
    margin: 0 auto;
}

.menu-in-3b7f {
    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);
}

.menu-in-3b7f:hover {
    border-color: var(--accent-color);
}

.upper-83da {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.upper-83da h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.content_gas_ebb5 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.menu-in-3b7f.fn-active-b2a3 .content_gas_ebb5 {
    transform: rotate(45deg);
}

.focused_2874 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.menu-in-3b7f.fn-active-b2a3 .focused_2874 {
    max-height: 1000px;
}

.focused_2874 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.complex-050f {
    padding: var(--section-padding);
}

.picture-inner-5888 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.form-6f69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-bc79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-bc79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_6edd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-middle-05de {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.focus-b222 {
    font-size: 2rem;
}

.element_c164 {
    color: var(--text-white);
    margin: 0;
}

.hidden_iron_964a {
    list-style: none;
    padding: 0;
}

.hidden_iron_964a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden_iron_964a li:last-child {
    border-bottom: none;
}

.search-dark-8b2b {
    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);
}

.search-dark-8b2b p {
    color: var(--success-color);
    margin: 0;
}

.progress-3416 {
    margin-top: 3rem;
}

.hero-8675 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.thumbnail-light-4e6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thumbnail-light-4e6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-ed02 {
    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);
}

.box-silver-fcc3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tooltip-ed02 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.item-7cc4 {
    padding: var(--section-padding);
}

.full-c0a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-c0a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-top-71da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search-top-71da:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.popup_left_027e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.copper_ec7c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.overlay-897e {
    flex: 1;
}

.lite_a349 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.filter_left_b635 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.fast-4b38 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-b837 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-b837:last-child {
    border-bottom: none;
}

/* Comparison Section */
.narrow-1409 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.caption_pink_0750 {
    padding: var(--section-padding);
}

.photo-brown-8d64 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.label-4bd4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-4bd4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-bd72 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-206c, .blue_0acd, .description_9534 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.description_9534 {
    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 */
.large_5853 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused_f5f2 {
    margin: 2rem 0;
}

.last_a079 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-61e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active-ee43 {
    list-style: none;
    padding: 0;
}

.active-ee43 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;
}

.active-ee43 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active-ee43 li:last-child {
    border-bottom: none;
}

.stale-cd6d {
    text-align: center;
    margin-top: 2rem;
}

.liquid-57d5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tabs_huge_749a {
    padding: var(--section-padding);
}

.cool-aab0 {
    margin: 2rem 0;
}

.content_ddc0 {
    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) {
    .content_ddc0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.content_ddc0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tertiary-middle-0d7e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.stale_511e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.notice_inner_5bbb {
    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;
}

.caption_bottom_aef8 {
    flex: 1;
}

.new_07f7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.border-over-ff5d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tooltip-thick-795d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.feature_b0c7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .feature_b0c7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.background-580f {
    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);
}

.background-580f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.background-580f .dropdown_0822 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-580f .alert-focused-9844 {
    color: var(--text-gray);
    font-size: 1rem;
}

.black_3954 {
    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);
}

.media-east-1d62 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.media-east-1d62 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hero_under_e258 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hero_under_e258 {
        grid-template-columns: 1fr 1fr;
    }
}

.section_bb70 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-6c0b {
    margin-bottom: 1.5rem;
}

.next-6c0b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.next-6c0b input,
.next-6c0b 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;
}

.next-6c0b input:focus,
.next-6c0b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.old_b711 {
    width: 100%;
    margin-top: 1rem;
}

.top_a13b {
    display: flex;
    align-items: center;
}

.icon-c409 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.bronze_886d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.full-a34f {
    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;
}

.hot-4ece {
    color: var(--text-gray);
}

.logo-93c2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.panel_static_7bc4 {
    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);
}

.panel_static_7bc4 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.silver_5709 {
    margin-top: 3rem;
}

.picture_next_b444 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.logo_paper_f260 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim_f3e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.detail-hot-8c68 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-hot-8c68:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.light-2ba6 {
    padding: var(--section-padding);
}

.overlay-e3b1 {
    margin: 2rem 0;
}

.pro-d0a6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.carousel_4e3f {
    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;
}

.carousel_4e3f:hover, .carousel_4e3f.fn-active-b2a3 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tertiary-54c4 {
    display: none;
}

.tertiary-54c4.fn-active-b2a3 {
    display: block;
}

.banner-f011 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_0af1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.secondary-lite-5d19 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.secondary-lite-5d19 ul {
    list-style: none;
    padding: 0;
}

.secondary-lite-5d19 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.secondary-lite-5d19 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nav-purple-c749 {
    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 */
.link-pink-9b2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small_0e68 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_up_562b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail_a12a {
    color: var(--accent-color);
    margin: 0;
}

.surface_dirty_d6b9 {
    display: flex;
    gap: 1.5rem;
}

.pagination-28a3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.lower-494a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gradient_bronze_7cbb {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient_bronze_7cbb.out_c66c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.gradient_bronze_7cbb.over_3f59 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gradient_bronze_7cbb.border_west_0bf9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.static_c501 {
    margin-top: 2rem;
}

.progress_outer_f31f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard_c906 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hard_c906 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed-c335 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.disabled_c1f1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.paper_effa {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.center_588f {
    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 */
.focus_fe61 {
    padding: var(--section-padding);
}

.info_simple_8eab {
    margin: 2rem 0;
}

.down_b5f1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.copper-e40f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.text-73c7 {
    list-style: none;
    padding: 0;
}

.text-73c7 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;
}

.text-73c7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.text-73c7 li:last-child {
    border-bottom: none;
}

.secondary-cool-0dad {
    margin: 2rem 0;
}

.search-medium-94d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.purple-1972 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .purple-1972 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column-58cc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_7df0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_0363 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stone_4e9a {
    margin-top: 2rem;
}

.bottom-dc8b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.glass_f629 {
    list-style: none;
    padding: 0;
}

.pagination_4c5b {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.pagination_4c5b a {
    color: var(--accent-color);
    text-decoration: none;
}

.pagination_4c5b a:hover {
    text-decoration: underline;
}

.frame_next_fda1 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.section_hovered_6ac3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_brown_ecc9 {
    margin: 2rem 0;
}

.highlight_37b2 {
    margin-bottom: 3rem;
}

.highlight_37b2 .wide-61e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.avatar-black-46b1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wrapper_lite_23cf {
    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);
}

.wrapper_lite_23cf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.slider_hot_bdf3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .slider_hot_bdf3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_active_bf16 {
    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 */
.filter_up_004f {
    padding: var(--section-padding);
}

.panel_dim_c5bf {
    margin: 2rem 0;
}

.list_east_b5ea {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero_2579 {
    overflow-x: auto;
    margin: 2rem 0;
}

.footer_77d3 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gold-11de {
    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;
}

.accordion-copper-f568 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.form-f502 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .form-f502 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-7312 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-7312 .pressed_379c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient-7312 .box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button_huge_a864 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.media-west-5653 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_dark_18a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_dark_18a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_d30e {
    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;
}

.bright_d30e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.item-next-3f76 {
    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);
}

.media_warm_66b0 {
    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;
}

.clean_1a9d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion-bright-6c00 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.small-67c8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pagination_4169 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.texture_prev_7f75 {
    color: var(--text-white);
    font-weight: 600;
}

.breadcrumb-glass-0701 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget_old_fef0 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_old_fef0 .filter_red_3107 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail-lite-9d6b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-lite-9d6b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_c880 {
    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);
}

.label_c880:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label_c880 .dropdown_0822 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.label_c880 .alert-focused-9844 {
    color: var(--text-gray);
    font-size: 1rem;
}

.fresh-3132 {
    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);
}

.bronze_16f7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.bronze_16f7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.header_wood_f90b {
    margin: 2rem 0;
}

.under_70eb {
    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);
}

.under_70eb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.aside_87ed {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.picture-pressed-2ea1 {
    flex: 1;
}

.content-copper-961b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.west_a4bd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.article_soft_c3f1 {
    margin: 2rem 0;
}

.layout-cea4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-cea4 .box-large-92b6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.layout-cea4 .image-ffc0 {
    color: var(--text-gray);
    margin: 0;
}

.hard-3069 {
    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);
}

.hard-3069 .alert_old_8d7a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.button_huge_a864 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.gallery-6fd8 {
    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;
}

.media-6ba7 {
    flex: 1;
}

.texture_inner_f6fd {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.red-0775 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.full-5ea7 {
    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;
}

.easy_4c83 {
    flex: 1;
}

.label_09ff {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.image-cold-b054 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.element_147d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tabs-huge-79ba {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.caption_pro_abc2 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.caption_pro_abc2 .filter_red_3107 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.preview-d4ed {
    margin-top: 2rem;
}

.preview-d4ed .hero-8675 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.preview-e45f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_next_0e2e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tertiary_next_0e2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_next_0e2e .aside_dc9f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-up-e2e3 {
    margin: 2rem 0;
}

.disabled_brown_3bad {
    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 */
.gold-f0cd {
    padding: var(--section-padding);
}

.status_gold_17a9 {
    margin-top: 1rem;
}

.text-5f29 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.text-5f29 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.text-5f29 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.description_0518 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_901e {
    margin: 2rem 0;
}

.aside-74bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.secondary_wood_fd44 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.list-36ee {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.paper-4f00 {
    margin: 2rem 0;
}

.dark_6c8e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dark_6c8e .wide-61e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_4538 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero_4538 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.iron-f55c {
    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);
}

.table-cold-d333 {
    color: var(--text-white);
    font-weight: 600;
}

.pro_b3eb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.progress-wood-b2b1 {
    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);
}

.progress-wood-b2b1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.stale_da01 {
    padding: var(--section-padding);
}

.texture_fluid_4eb7 {
    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;
}

.texture_fluid_4eb7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.badge-ab9e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-ab9e .box-silver-fcc3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-ab9e .warm-b6e4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture-wood-b92b {
    flex: 1;
}

.form_pink_bf34 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.overlay-small-2998 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-small-2998 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.overlay-small-2998 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.feature_cold_ac84 {
    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_cold_ac84 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.feature_cold_ac84 strong {
    color: var(--warning-color);
}

/* Slots Section */
.dim-f5b6 {
    padding: var(--section-padding);
}

.panel_lower_a04a {
    margin: 2rem 0;
}

/* Table Games Section */
.pagination-smooth-1cc5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_8b4c {
    margin: 2rem 0;
}

.picture_silver_e323 {
    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);
}

.picture_silver_e323:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.picture_silver_e323 .dynamic-c3c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_silver_e323 .modal_28ec {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.surface_full_4c97 {
    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);
}

.surface_full_4c97 .alert_old_8d7a {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.wide_4f2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-under-f59d {
    margin: 2rem 0;
}

.title-a3af {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-26c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_7904 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tooltip_clean_74f8 {
    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);
}

.tooltip_clean_74f8:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tooltip_clean_74f8.fn-active-b2a3 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-dynamic-48af {
    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);
}

.icon-9920 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon-9920 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.shadow-9f9d {
    padding: var(--section-padding);
}

.clean-7305 {
    margin: 2rem 0;
}

.iron_2546 {
    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);
}

.iron_2546:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .iron_2546 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.top_2d36 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tertiary_7055 {
    flex: 1;
}

.simple_9b74 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blue-9e92 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.picture_9e5e {
    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;
}

.box-plasma-9a3a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.outline_75d9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tiny-ba7e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active-4e4e {
    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;
}

.active-4e4e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero-3f2a {
    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);
}

.carousel-slow-40e0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel-slow-40e0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.popup-lower-629a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border_upper_4fb3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border_upper_4fb3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_upper_4fb3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-1653 {
    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;
}

.wrapper-1653:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.old_2a71 {
    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;
}

.yellow-3641 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.complex-512c {
    font-size: 2rem;
}

.breadcrumb-out-281c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.overlay-8b7c {
    flex: 1;
}

.down-c35f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer_c342 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.widget-1559 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short_4ac4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hard-0ea3 {
    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;
}

.under_12a2 {
    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;
}

.under_12a2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.image_paper_28c9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_702c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_6fd8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .video_6fd8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-773d {
    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);
}

.preview_cool_37ea {
    color: var(--text-white);
    font-weight: 600;
}

.menu_white_9e76 {
    color: var(--accent-color);
    font-weight: 600;
}

.gallery_1a50 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.gallery_1a50 strong {
    color: var(--accent-color);
}

/* Security Section */
.panel_prev_efd6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.box_green_b042 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.item-12f1 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.element_full_3bf8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-mini-9e93 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.up-3364 {
    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) {
    .up-3364 {
        flex-direction: column;
        gap: 1rem;
    }
}

.up-3364:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.up-3364 .full-5ea7 {
    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;
}

.up-3364 .easy_4c83 {
    flex: 1;
}

.up-3364 .label_09ff {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.up-3364 .image-cold-b054 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.fresh_09fb {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh_09fb .section-easy-0017 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh_09fb .dirty_b361 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fresh_09fb .dirty_b361 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fresh_09fb .dirty_b361 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.box-46e8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.hovered-e0a0 {
    padding: var(--section-padding);
}

.light_a5f3 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .light_a5f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_mini_064f {
    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);
}

.background_mini_064f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.background_mini_064f .nav-decc {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_mini_064f .label_b3e3 {
    flex: 1;
}

.background_mini_064f .status_6b5e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background_mini_064f .media_full_8ead {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.mask_cfa9 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_cfa9 .motion_48d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask_cfa9 .label-fixed-d027 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.mask_cfa9 .label-fixed-d027 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);
}

.mask_cfa9 .label-fixed-d027 li:last-child {
    border-bottom: none;
}

.mask_cfa9 .label-fixed-d027 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;
}

.mask_cfa9 .label-fixed-d027 li strong {
    color: var(--text-white);
}

.motion-1d4e {
    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);
}

.motion-1d4e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion-1d4e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.mask_78e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_969d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .active_969d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bronze_63bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze_63bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.border-0382 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_pro_6e65 {
    font-size: 2rem;
}

.current-1fcf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.popup-91b5 {
    flex: 1;
}

.selected-8a53 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-8a53 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.selected-8a53 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.popup_advanced_0b9b {
    margin-top: 3rem;
}

.down_b5f1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.copper-e40f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text-73c7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-73c7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.text-73c7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.text-73c7 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.mini-b7f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_5b85 {
    margin: 2rem 0;
}

.avatar_stone_886d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.avatar_stone_886d .wide-61e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav_1778 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav_1778 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dim-2ab9 {
    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);
}

.dim-2ab9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.accent-ea0a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.secondary_down_1ec5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.element-yellow-5b7a {
    padding: var(--section-padding);
}

.gradient-9353 {
    margin: 2rem 0;
}

.hard_4201 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hard_4201 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_4201 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_3176 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_3176:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tag-46a9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hard_d2c2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.complex-a913 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.complex-a913.label-fast-8ffa {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.content-b2b7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.column-east-4bfc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.cold-806a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message-short-2870 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav_5474 {
    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);
}

.nav_5474 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_5474 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.basic_d40e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_6d48 {
    margin: 2rem 0;
}

.hovered_3bdb {
    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) {
    .hovered_3bdb {
        flex-direction: column;
        gap: 1rem;
    }
}

.hovered_3bdb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hovered_3bdb::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);
}

.pagination_huge_dd8a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.picture_slow_bcc3 {
    flex: 1;
}

.badge-inner-c529 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout-7e61 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout-7e61 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.active_93db {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_a4e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_smooth_1fb6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description_smooth_1fb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-white-9eb4 {
    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);
}

.accent-4879 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.grid-first-a5f4 {
    flex: 1;
}

.mini_5648 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.primary-1ae9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tiny_9824 {
    margin-top: 2rem;
    text-align: center;
}

.tabs-full-00e8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-full-00e8 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.sidebar_pro_9ce4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_pro_9ce4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_c7f2 {
    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);
}

.tiny_c7f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_c7f2 .surface-76c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_c7f2 .caption-0cf0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tiny_c7f2 .filter_218b {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tiny_c7f2 .image-17e5 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hot_2c29 {
    padding: var(--section-padding);
}

.gas_a897 .surface-4f0f {
    flex: 1;
}

/* Promo Calendar Section */
.middle-7a67 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-ca43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-ca43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-yellow-639f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid_7c5f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.solid-b74e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.icon-5b1c {
    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);
}

.progress-a5b4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gas-f410 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.sidebar-f53a {
    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);
}

.sidebar-f53a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar-f53a strong {
    color: var(--accent-color);
}

/* Requirements Section */
.article-red-af43 {
    padding: var(--section-padding);
}

.picture-e353 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .picture-e353 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.in-0a8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-eaa6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media_8766 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media_8766 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.first-50e2 {
    margin-top: 3rem;
}

.first-50e2 .down_b5f1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.first-50e2 .copper-e40f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first-50e2 .text-73c7 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.first-50e2 .text-73c7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.first-50e2 .text-73c7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.first-50e2 .text-73c7 li strong {
    color: var(--warning-color);
}

.brown_03d9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown_03d9 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.progress_under_f171 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.left_db5c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_db5c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-67df {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-67df .wide-61e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.motion_0e2c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carousel_top_d6fa {
    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);
}

.carousel_top_d6fa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.prev_a52c {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-gas-74b8 {
    flex: 1;
}

.container-large-8fe5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.advanced_07a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.link-12da {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.outline_white_e40d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pink_12d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .pink_12d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-a18f {
    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);
}

.footer-a18f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_lower_17b4 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_f192 {
    color: var(--text-gray);
    font-size: 1rem;
}

.media-east-1d62 {
    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);
}

.prev-c968 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.prev-c968 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.pattern-7531 { 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; }
.chip-white-5be7, .cold-7d1e { max-width:100%; height:auto; }

.widget_dim_bd4d, .right-b806, .notice-east-6b1d { white-space:normal; }

.article-inner-1f76,
.text_1ba0,
.lower-fef7,
.sidebar_pro_9ce4,
.article_soft_c3f1,
.cold_c266 {
  flex-wrap:wrap;
}

[class*="grid"],
.pink_12d1,
.hard_4201,
.sort_02ba {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dark-9a48 img,
.text_1ba0 img,
.tertiary-0bb8 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gas_88e8, .notification_e40a,
.container-last-9077, .selected-d3d7 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.caption_old_7891 { width:100%; overflow-x:auto; }
.caption_old_7891 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.notice-866d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .notice-866d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.basic_e6b9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.simple_746c,
.preview-thick-ed90,
.paragraph-soft-5436,
.tabs-932b,
.feature_b0c7,
.pink_12d1,
.hard_4201,
.sort_02ba,
.gold-cd1f,
.clean-7305,
.notice-866d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .simple_746c,
  .preview-thick-ed90,
  .paragraph-soft-5436,
  .tabs-932b,
  .feature_b0c7,
  .pink_12d1,
  .hard_4201,
  .sort_02ba,
  .gold-cd1f,
  .clean-7305,
  .notice-866d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.popup-selected-7943,
.background-580f,
.footer-a18f,
.module_thick_a88d,
.widget_3176,
.info_dd76,
.iron_2546,
.basic_e6b9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.sort-hard-79be,
.item-8951,
.text-8080 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sort-hard-79be > *,
.item-8951 > *,
.text-8080 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 08c0 */
.shadow-element-v3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
