/* {$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;
}

.accordion-550c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.widget_d37a {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .widget_d37a {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .widget_d37a {
        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 */
.column_dark_9b5b {
    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);
}

.short_ef21 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .short_ef21 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .pink_9e0d {
        grid-column: 1;
    }
    
    .grid-c4df {
        grid-column: 2;
    }
    
    .tag_light_f68e {
        grid-column: 3;
    }
}

.pink_9e0d img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.pink_9e0d:hover img {
    transform: scale(1.05);
}

/* Navigation */
.up_0f14 {
    display: none;
}

@media (min-width: 1024px) {
    .up_0f14 {
        display: block;
    }
}

/* Grouped Navigation */
.next-5655 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.card_hard_886d {
    position: relative;
}

.button_outer_37da {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.card_hard_886d .link-66e3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.link-66e3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.shade-last-30eb {
    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;
}

.shade-last-30eb:hover,
.shade-last-30eb.fn-active-a1b8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.plasma-f4a2 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .plasma-f4a2 {
        display: flex;
    }
}

/* Mobile Register Button */
.grid-c4df {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-c4df {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.hot_571c {
    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;
}

.hot_571c::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 */
.tag_light_f68e {
    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) {
    .tag_light_f68e {
        display: none;
    }
}

.tag_light_f68e span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tag_light_f68e.fn-active-a1b8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tag_light_f68e.fn-active-a1b8 span:nth-child(2) {
    opacity: 0;
}

.tag_light_f68e.fn-active-a1b8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.row-lite-86af {
    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;
}

.row-lite-86af.fn-active-a1b8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.avatar_55c1 {
    overflow: hidden;
}

.button-7a0c {
    list-style: none;
    padding: 0.75rem 0;
}

.description_83a0 {
    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;
}

.description_83a0:hover,
.description_83a0.fn-active-a1b8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.description_83a0.narrow_f217 {
    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;
}

.description_83a0.narrow_f217::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 */
.background_copper_1eb0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.message-inner-2b65 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.message-inner-2b65:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.secondary_ef7e {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary_ef7e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fast_a685 {
    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;
}

.fast_a685:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.label_hard_368e {
    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;
}

.hovered-247c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hovered-247c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.in_988d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.in_988d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.outer-45ea {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.outer-45ea: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);
}

.surface_iron_d763 {
    font-size: 1em;
    font-weight: 700;
}

.tertiary-735f {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.column_88d9 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.column_88d9::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;
}

.icon-black-cf42 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .icon-black-cf42 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.icon-light-4a56 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.center-f9b6 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.texture-motion-3f27 {
    margin-bottom: 2rem;
}

.hero_short_70cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero_short_70cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_1b2e {
    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);
}

.photo-7b19 {
    font-size: 1.5rem;
}

.video_up_3fec {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.mask_281b {
    display: flex;
    justify-content: center;
    align-items: center;
}

.last_3d4b {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.last_3d4b:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.upper-edd9 {
    text-align: center;
    margin-bottom: 3rem;
}

.dropdown_e6eb {
    margin-bottom: 1rem;
}

.alert_lower_fe69 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.notice_5686 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .notice_5686 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .notice_5686.dynamic_0edf {
        direction: rtl;
    }
    
    .notice_5686.dynamic_0edf > * {
        direction: ltr;
    }
}

.hot_d006 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hot_d006:first-child {
    margin-top: 0;
}

.avatar_east_f8b8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.image_5031 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.image_5031:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tabs_cd8c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_cd8c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_17f5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail-silver-714a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.image-under-6927 {
    list-style: none;
}

.image-under-6927 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-under-6927 li:last-child {
    border-bottom: none;
}

/* Games Features */
.main-simple-e6c7 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fresh-d9cb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fast_0ee6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.last-a1ae {
    margin: 2rem 0;
}

.filter-green-830e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.label-black-e115 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.badge-purple-ed78 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.label_b22a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.text_in_f046 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_in_f046 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-15ed {
    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);
}

.steel-15ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wrapper_first_99c0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.out_53da {
    font-size: 1.5rem;
}

.component-edc1 {
    color: var(--accent-color);
    margin: 0;
}

.content-3039 {
    list-style: none;
}

.content-3039 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.content-3039 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.copper_5909 {
    margin: 2rem 0;
}

.grid-ab3b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.surface_bb90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .surface_bb90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_4e8f {
    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);
}

.box_liquid_fdbb {
    font-size: 1.25rem;
}

.focus_dark_6b3a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.detail-huge-cd49,
.button-ec84 {
    text-align: center;
    margin: 2rem 0;
}

.paragraph-small-5b3d,
.silver-ea75 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.slider-8511 {
    margin: 2rem 0;
    text-align: center;
}

.popup_a3fc {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup_a3fc::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;
}

.hard_2652 {
    position: relative;
    z-index: 1;
}

.dropdown_6d04 {
    margin-bottom: 1rem;
}

.heading_8b2e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner_solid_2f3b {
    margin-bottom: 3rem;
}

.detail-3957 {
    margin-top: 3rem;
}

.badge-bfbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .badge-bfbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-bfbc .border_1b2e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accent_west_339a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slow-3dfa {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.component-4689 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.backdrop_8912 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .backdrop_8912 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_8912 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tag-fast-399c {
    margin-bottom: 1rem;
}

.red_3e1e img {
    margin-bottom: 1rem;
}

.filter-solid-62a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_ec6c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.video_wood_eefa {
    list-style: none;
}

.video_wood_eefa li {
    margin-bottom: 0.5rem;
}

.video_wood_eefa a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.video_wood_eefa a:hover {
    color: var(--accent-color);
}

.pattern_eee4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thumbnail_9d7e {
    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);
}

.thumbnail_9d7e:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.gradient-glass-53fc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.gradient-glass-53fc p {
    margin-bottom: 0.25rem;
}

.badge_6dbb {
    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) {
    .badge_6dbb {
        flex-direction: row;
    }
}

.hidden_motion_538a {
    text-align: center;
}

@media (min-width: 768px) {
    .hidden_motion_538a {
        text-align: left;
    }
}

.hidden_motion_538a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture-15dd {
    font-size: 0.75rem !important;
}

.message_ba33 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dark_7b12 {
    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);
    }
}

.paragraph_middle_78e2 {
    animation: fadeInUp 0.6s ease-out;
}

.tertiary-5a16 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.slider-b250 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-b250 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.summary_iron_18a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_iron_18a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_top_eea6 {
    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);
}

.alert_top_eea6 .fast_0ee6 {
    font-size: 1.25rem;
}

.alert_top_eea6 .current_c948 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.left_6492 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .left_6492 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-486c {
    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);
}

.chip-486c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_pro_ba58 {
    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);
}

.lite_60da {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass_ccc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_26b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-wide-002c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel-wide-002c .tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-wide-002c .status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-advanced-020a {
    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);
}

.carousel-fixed-ea4c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.carousel-fixed-ea4c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel-fixed-ea4c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.border_south_aa8e {
    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);
}

.upper_fb83 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paragraph_b2e3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.paragraph_b2e3 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph_b2e3 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);
}

.paragraph_b2e3 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph_b2e3 input::placeholder {
    color: var(--text-muted);
}

.content-paper-c990 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.right-b1b1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.right-b1b1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.grid_orange_771a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.grid_orange_771a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.surface_bb90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_bb90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_4e8f {
    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);
}

.logo_4e8f .box_liquid_fdbb {
    font-size: 1.25rem;
}

.logo_4e8f .focus_dark_6b3a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.slider_white_dd21 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-d7b7 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-d7b7 .fast_0ee6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-d7b7 .tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-d7b7 .status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-full-7223 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-pressed-c92f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort-pressed-c92f .paper-aa9a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-pressed-c92f .simple_4572 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-0656 {
    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);
}

.shadow-dirty-942d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-dirty-942d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_7885 {
    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);
}

.background_7885:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-static-3502 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pro_fdb7 {
    flex: 1;
}

.notice_first_1fee {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wrapper-huge-f372 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shadow_dim_431a {
    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);
}

.shadow_dim_431a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.shade-under-c40c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-under-c40c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_static_b9e0 {
    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);
}

.message_static_b9e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info-fresh-413a {
    font-size: 2rem;
    flex-shrink: 0;
}

.full-d8bf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail_2c6c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion_9beb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.avatar-plasma-5135 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_e8f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold-f2a7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cold-f2a7 .chip-ea06 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold-f2a7 .avatar-aae7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-new-ef29 {
    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);
}

.disabled_center_62d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_bottom_7af5 {
    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);
}

.row_bottom_7af5 .fast_0ee6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row_bottom_7af5 .tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row_bottom_7af5 .status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-active-1e04 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-active-1e04 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-purple-a7c2 {
    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);
}

.media-purple-a7c2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.filter_iron_a5d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_iron_a5d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-right-9cc9 {
    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);
}

.search-right-9cc9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_simple_a9e1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface-9d8f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-black-e115 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.pagination_ad7b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.nav_solid_37ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_5846 {
    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);
}

.outer_5846:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-fixed-b3f5 {
    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);
}

.search-64c5 {
    flex: 1;
}

.clean-6418 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cool-f923 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.text_small_c400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-steel-f1f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft-fa3d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-fa3d .paper-aa9a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.soft-fa3d .simple_4572 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-ec84 {
    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);
}

.liquid_5c81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_5c81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.center_7aba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_7aba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-826f {
    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-826f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_blue_382f {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_wide_0fa3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sort_motion_dc5a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hidden_dynamic_1cf5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block-static-3bc0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_6d54 {
    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);
}

.hot_e670 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-19b9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south_3f12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_center_62d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_bottom_7af5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.row_bottom_7af5 .tabs-easy-ca8c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row_bottom_7af5 .status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_silver_7a9b {
    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);
}

.new-6309 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new-6309 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-6309 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_a4e0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_a4e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_cd48 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-basic-abe3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.backdrop-hovered-f100 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.background_dd26 {
    padding: 1.5rem;
}

.prev_451c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tiny-7cb5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny-7cb5 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;
}

.tiny-7cb5 li:last-child {
    border-bottom: none;
}

.tiny-7cb5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.footer_aa10 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_aa10 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-a365 {
    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);
}

.hovered-a365:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-gas-99b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh-60a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.primary-dim-c7d3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dirty-50dd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.nav_south_8a6a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-active-7816 {
    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);
}

.down_efb6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple_54e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-6ae5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-abcd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.block-light-6875 {
    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);
}

.tag-a085 {
    text-align: center;
}

.aside_out_26bf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast_e2db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout_1988 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_4eab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_4eab .tabs-easy-ca8c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_4eab .status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-fast-90bc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview-fast-90bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview-fast-90bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_e52d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card_e52d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_tiny_32af {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.banner-fresh-2b44 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs-easy-ca8c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.progress-2d16 {
    padding: 1.5rem;
}

.status_iron_bc00 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solid_3665 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid_3665 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;
}

.solid_3665 li:last-child {
    border-bottom: none;
}

.solid_3665 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.brown-f462 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.secondary_67d9 {
    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);
}

.secondary_67d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-5872 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-3ced {
    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);
}

.section_pro_ba58 {
    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;
}

.lite_60da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass_ccc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-yellow-2be1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower_a7bd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_steel_3713 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark-2556 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.status-gas-28b4 {
    display: flex;
    gap: 1rem;
}

.status-gas-28b4 .hero-fresh-f00d {
    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;
}

.sidebar_inner_ae08 {
    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);
}

.tag_6097 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.top_0e57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top_0e57 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;
}

.top_0e57 li:last-child {
    border-bottom: none;
}

.top_0e57 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.prev_0303 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .prev_0303 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prev_0303 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-huge-060d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.chip-huge-060d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green-904c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.description-fa70 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.chip-ea06 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.menu-4e34 {
    font-size: 1rem;
}

.simple_c2fc {
    padding: 1.5rem;
}

.avatar-aae7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tertiary_961b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tertiary_961b .tag-a085 {
    text-align: center;
}

.tertiary_961b .fast_e2db {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tertiary_961b .stone-7031 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline_dark_6b13 {
    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);
}

.outline_dark_6b13:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.column-thick-d931 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-thick-d931 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-8958 {
    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-8958:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_d867 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium_cce1 {
    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);
}

.mask-4d72 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title_c697 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy-a1b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_gold_d786 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.carousel_huge_bd90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall-6ab1 {
    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);
}

.banner_c376 {
    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;
}

.banner_c376.logo_focused_e3a8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.banner_c376.detail-tiny-4f9c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.banner_c376.preview-3865 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.banner_c376.block-gold-468f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.banner_c376.border_prev_673d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.alert_inner_b101 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-f4ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.old-bf53 {
    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);
}

.disabled-60e1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.summary-full-7223 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-full-7223 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;
}

.summary-full-7223 li:last-child {
    border-bottom: none;
}

.summary-full-7223 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.sidebar-under-e1c4 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-under-e1c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-under-e1c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_25d9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.up_25d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_25d9.button-408f {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .up_25d9.button-408f {
        grid-column: span 3;
    }
}

.caption-6185 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.up_25d9.button-408f .caption-6185 {
    background: rgba(6, 182, 212, 0.1);
}

.thumbnail-3644 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mask-67ac {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.up_25d9.button-408f .mask-67ac {
    color: var(--info-color);
}

.title-f58f {
    padding: 1.5rem;
    text-align: center;
}

.fixed-e6d4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.up_25d9.button-408f .fixed-e6d4 {
    color: var(--info-color);
}

.container_86b8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.nav-e57c {
    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 */
.card-medium-7fd5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-medium-7fd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_a407 {
    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);
}

.wide_a407:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-yellow-e709 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-d7b7 {
    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);
}

.box_liquid_fdbb {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_716b {
    flex: 1;
}

.grid-ab3b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.static_5eee {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_fc55 {
    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);
}

.sort_6f95 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.video_8a4e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dark_7b12 {
    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);
}

.icon-62d9 {
  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);
}

.icon-62d9 .tag-a085 {
    text-align: center;
}

.icon-62d9 .aside_out_26bf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.icon-62d9 .fast_e2db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-black-c319 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-cded {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-south-f8b5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_easy_5fe5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_copper_e9f2 {
    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);
}

.overlay_stone_8227 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north_4e01 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-north-477e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-north-477e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-north-477e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-active-ebf2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container-active-ebf2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_tall_0987 {
    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);
}

.fluid_6b8d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.down-36ef {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.feature-narrow-c6e0 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-narrow-c6e0.gradient-huge-1c8c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.feature-narrow-c6e0.fixed-a367 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.feature-narrow-c6e0.selected_02c8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.caption-1e2e {
    padding: 1.5rem;
    text-align: center;
}

.soft_46e1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.grid-3689 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.grid-3689 .full-8016 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.action_a997 {
    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);
}

.action_a997:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hard-9a6a {
  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);
}

.stone-3c23 {
    text-align: center;
}

.stone-3c23 .aside_out_26bf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.stone-3c23 .fast_e2db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.list-yellow-a996 { text-align: center; }
.out_a200 { text-align: left; }
.aside_cool_f62a { text-align: right; }

.box_f1c9 { margin-bottom: 0; }
.accent-glass-cdab { margin-bottom: 0.5rem; }
.box-ddfc { margin-bottom: 1rem; }
.preview-02fb { margin-bottom: 1.5rem; }
.section-4607 { margin-bottom: 2rem; }

.tall_ad45 { margin-top: 0; }
.upper_4646 { margin-top: 0.5rem; }
.hover-red-c20a { margin-top: 1rem; }
.list-motion-5ae8 { margin-top: 1.5rem; }
.pro-8a88 { margin-top: 2rem; }

.fn-hidden-a1b8 { display: none; }
.fn-visible-a1b8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .column_88d9 {
        padding: 6rem 0 3rem;
    }
    
    .icon-black-cf42 {
        text-align: center;
    }
    
    .notice_5686 {
        text-align: center;
    }
    
    .hero_short_70cf {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .column_dark_9b5b,
    .row-lite-86af,
    .popup_a3fc,
    .component-4689 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .column_88d9 {
        background: none;
    }
}

/* Providers Section */
.pro-1591 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-50aa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick-50aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-50aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-9035 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading-9035:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-plasma-abcd {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.background-fixed-857a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary-cfff {
    list-style: none;
    padding: 0;
}

.primary-cfff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.primary-cfff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.texture_548f {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_548f p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.out-db3d {
    padding: var(--section-padding);
}

.video_eff6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_eff6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_slow_15ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tabs_slow_15ae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.light-373f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.paper-2731 {
    display: flex;
    flex-direction: column;
}

.active_9220 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.fixed_0187 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dynamic_fd6d {
    color: var(--accent-color);
}

.fluid-ae25 {
    font-size: 1.25rem;
}

.copper_2b26 {
    margin-bottom: 1rem;
}

.copper_2b26 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.slow_7a5e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.static_253d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.tag-a085 {
    text-align: center;
}

.aside_out_26bf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast_e2db {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.container_3b7a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-d021 {
    margin: 2rem 0;
}

.label-stone-23e0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.label-stone-23e0 .fast_0ee6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro_de99 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.easy_4c0e {
    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;
}

.easy_4c0e:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.menu-c94c {
    font-size: 2rem;
}

.brown_12ff {
    display: flex;
    flex-direction: column;
}

.old_3493 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.outline-6224 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.carousel-narrow-6349 {
    padding: var(--section-padding);
}

.yellow-33df {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .yellow-33df {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yellow-33df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-65a6 {
    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);
}

.info-65a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info-65a6 .aside_out_26bf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.info-65a6 .fast_e2db {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.info-65a6 .modal-green-e874 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.input_dim_637e {
    margin-top: 4rem;
}

.media_42e5 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tabs-light-9f51 {
    overflow-x: auto;
}

.cold_081b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cold_081b thead {
    background: var(--accent-color);
}

.cold_081b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.cold_081b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_081b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.cold_081b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hovered-e1c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-easy-c1f7 {
    max-width: 900px;
    margin: 0 auto;
}

.gradient_glass_b0ac {
    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);
}

.gradient_glass_b0ac:hover {
    border-color: var(--accent-color);
}

.header_a395 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.header_a395 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.label_4d41 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.gradient_glass_b0ac.fn-active-a1b8 .label_4d41 {
    transform: rotate(45deg);
}

.info-hard-e13f {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.gradient_glass_b0ac.fn-active-a1b8 .info-hard-e13f {
    max-height: 1000px;
}

.info-hard-e13f p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tiny-946e {
    padding: var(--section-padding);
}

.carousel-fixed-ea4c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.current-14ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current-803c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-803c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paper-8e87 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-29fb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-6cbc {
    font-size: 2rem;
}

.yellow_2653 {
    color: var(--text-white);
    margin: 0;
}

.current_0e4a {
    list-style: none;
    padding: 0;
}

.current_0e4a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current_0e4a li:last-child {
    border-bottom: none;
}

.border-south-c78e {
    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);
}

.border-south-c78e p {
    color: var(--success-color);
    margin: 0;
}

.widget_12c7 {
    margin-top: 3rem;
}

.tag_6097 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal_orange_57d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal_orange_57d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pink-7d02 {
    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);
}

.element-4359 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pink-7d02 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.carousel-4841 {
    padding: var(--section-padding);
}

.smooth-e933 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth-e933 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-34dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.popup-34dd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.out_4385 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-4a1d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel-fresh-2229 {
    flex: 1;
}

.bright-d94f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.container_58e9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.shadow_40b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_7dc5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main_7dc5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.dropdown-dynamic-26e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dropdown_cb86 {
    padding: var(--section-padding);
}

.background_fresh_ec69 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.popup-ce8e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-ce8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-15fd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_easy_9591, .outline-a8fa, .paragraph-medium-738f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.paragraph-medium-738f {
    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 */
.container_solid_22fd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-ba79 {
    margin: 2rem 0;
}

.carousel_b621 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_gas_1a9a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort_focused_d99c {
    list-style: none;
    padding: 0;
}

.sort_focused_d99c 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;
}

.sort_focused_d99c li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.sort_focused_d99c li:last-child {
    border-bottom: none;
}

.primary-5030 {
    text-align: center;
    margin-top: 2rem;
}

.logo-5c1b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.preview-9ccc {
    padding: var(--section-padding);
}

.advanced_2f27 {
    margin: 2rem 0;
}

.hot_71f1 {
    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) {
    .hot_71f1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hot_71f1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pressed_788f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.surface_a485 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.iron_7a8c {
    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;
}

.widget_2257 {
    flex: 1;
}

.short-c88f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.basic-9991 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_db10 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.green-6dba {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .green-6dba {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.box_af37 {
    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);
}

.box_af37:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_af37 .aside_out_26bf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_af37 .fast_e2db {
    color: var(--text-gray);
    font-size: 1rem;
}

.alert-dirty-277d {
    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);
}

.fixed-7137 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.fixed-7137 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.primary-e1cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .primary-e1cd {
        grid-template-columns: 1fr 1fr;
    }
}

.active-e75b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-11c4 {
    margin-bottom: 1.5rem;
}

.tooltip-11c4 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tooltip-11c4 input,
.tooltip-11c4 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;
}

.tooltip-11c4 input:focus,
.tooltip-11c4 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hard-23ef {
    width: 100%;
    margin-top: 1rem;
}

.mini_b465 {
    display: flex;
    align-items: center;
}

.right_426e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.tooltip-d816 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.paper-9088 {
    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;
}

.west_0ae2 {
    color: var(--text-gray);
}

.background_black_e199 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.notice_714c {
    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);
}

.notice_714c p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.preview_prev_7103 {
    margin-top: 3rem;
}

.paragraph_abc6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.slider_current_3ba7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-9192 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.feature-bronze-bafc {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-bronze-bafc:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.text-thick-a2ee {
    padding: var(--section-padding);
}

.title_caeb {
    margin: 2rem 0;
}

.panel-ce6f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag_over_e28a {
    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;
}

.tag_over_e28a:hover, .tag_over_e28a.fn-active-a1b8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.video-focused-f50a {
    display: none;
}

.video-focused-f50a.fn-active-a1b8 {
    display: block;
}

.pattern_next_5000 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_ff60 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.title_f287 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.title_f287 ul {
    list-style: none;
    padding: 0;
}

.title_f287 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.title_f287 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.short_3b2b {
    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-glass-2458 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_f640 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_b5bd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.box-83f0 {
    color: var(--accent-color);
    margin: 0;
}

.fresh-4fdb {
    display: flex;
    gap: 1.5rem;
}

.short-53ff {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media_70ab {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.notice_medium_88cc {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.notice_medium_88cc.card-bottom-60ac {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.notice_medium_88cc.aside_narrow_0178 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.notice_medium_88cc.overlay-744d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pink-fa28 {
    margin-top: 2rem;
}

.gas-61fb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.title_tall_3a15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .title_tall_3a15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-small-413a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.mask-583b {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.action-4231 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.center_dfc0 {
    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 */
.progress-3a49 {
    padding: var(--section-padding);
}

.link-89c2 {
    margin: 2rem 0;
}

.gas-8d62 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.copper-e2a7 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.main_wood_5e0c {
    list-style: none;
    padding: 0;
}

.main_wood_5e0c 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;
}

.main_wood_5e0c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.main_wood_5e0c li:last-child {
    border-bottom: none;
}

.heading_5b18 {
    margin: 2rem 0;
}

.column_bright_1d91 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero_orange_bb08 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero_orange_bb08 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_fd94 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-c91c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component_blue_aee2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper_e8c9 {
    margin-top: 2rem;
}

.notice_first_1fee {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.card_c2eb {
    list-style: none;
    padding: 0;
}

.pink_2ded {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.pink_2ded a {
    color: var(--accent-color);
    text-decoration: none;
}

.pink_2ded a:hover {
    text-decoration: underline;
}

.notification-upper-2ba6 {
    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 */
.dynamic_7010 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_short_a014 {
    margin: 2rem 0;
}

.link_34e0 {
    margin-bottom: 3rem;
}

.link_34e0 .disabled_gas_1a9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.popup_4abe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shade-ad9d {
    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);
}

.shade-ad9d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.lower-39d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .lower-39d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-810a {
    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 */
.chip-7148 {
    padding: var(--section-padding);
}

.logo-4103 {
    margin: 2rem 0;
}

.menu-d085 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.clean_40d1 {
    overflow-x: auto;
    margin: 2rem 0;
}

.purple-e43c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.list-hard-05d9 {
    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;
}

.list_dirty_974d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.green_c2ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .green_c2ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_over_72ec {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_over_72ec .fast_0ee6 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.avatar_over_72ec .tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.liquid_2cb9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.highlight_b762 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-6008 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-6008 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_cbef {
    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_cbef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.notification-dd06 {
    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);
}

.popup_d1d6 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-b028 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow-98a8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.down-b246 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.modal_outer_938f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail_b289 {
    color: var(--text-white);
    font-weight: 600;
}

.backdrop-fixed-c895 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.secondary-d93a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-d93a .hero-fresh-f00d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sort_92a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_92a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-a0b6 {
    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);
}

.shade-a0b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade-a0b6 .aside_out_26bf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade-a0b6 .fast_e2db {
    color: var(--text-gray);
    font-size: 1rem;
}

.tertiary_3e03 {
    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);
}

.primary_1c79 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.primary_1c79 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.block-static-3bc0 {
    margin: 2rem 0;
}

.heading_6d54 {
    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);
}

.heading_6d54:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hot_e670 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown_thick_2850 {
    flex: 1;
}

.red-19b9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south_3f12 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.disabled_center_62d0 {
    margin: 2rem 0;
}

.row_bottom_7af5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_bottom_7af5 .tabs-easy-ca8c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.row_bottom_7af5 .status_iron_bc00 {
    color: var(--text-gray);
    margin: 0;
}

.backdrop_silver_7a9b {
    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);
}

.backdrop_silver_7a9b .paragraph-small-5b3d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.liquid_2cb9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.label-fixed-b3f5 {
    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;
}

.search-64c5 {
    flex: 1;
}

.cool-f923 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.text_small_c400 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.section_pro_ba58 {
    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;
}

.title_easy_a878 {
    flex: 1;
}

.lite_60da {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.glass_ccc3 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.input_steel_3713 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.dark-2556 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.status-gas-28b4 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.status-gas-28b4 .hero-fresh-f00d {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar_inner_ae08 {
    margin-top: 2rem;
}

.sidebar_inner_ae08 .tag_6097 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.link_prev_91d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-light-6875 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .block-light-6875 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-light-6875 .tag-a085 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_1988 {
    margin: 2rem 0;
}

.card_4eab {
    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 */
.focus-fresh-05dc {
    padding: var(--section-padding);
}

.progress-2d16 {
    margin-top: 1rem;
}

.solid_3665 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.solid_3665 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.solid_3665 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.action_5879 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-first-11f6 {
    margin: 2rem 0;
}

.secondary-dim-7228 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.light-9144 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.header_yellow_39d0 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.mask_hovered_ace3 {
    margin: 2rem 0;
}

.content-3a47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.content-3a47 .disabled_gas_1a9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue_9234 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .blue_9234 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row-6a0c {
    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);
}

.banner_prev_c207 {
    color: var(--text-white);
    font-weight: 600;
}

.element-small-d610 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.image_hot_89fc {
    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);
}

.image_hot_89fc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.surface_last_a07c {
    padding: var(--section-padding);
}

.shadow_f194 {
    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;
}

.shadow_f194:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.purple-ab8a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.purple-ab8a .element-4359 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-ab8a .paragraph_full_089f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.first_bf48 {
    flex: 1;
}

.chip_gold_d84d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.column_red_69c2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_red_69c2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.column_red_69c2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search-b9ef {
    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);
}

.search-b9ef p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-b9ef strong {
    color: var(--warning-color);
}

/* Slots Section */
.card-short-128a {
    padding: var(--section-padding);
}

.avatar-plasma-5135 {
    margin: 2rem 0;
}

/* Table Games Section */
.photo_350c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_e8f6 {
    margin: 2rem 0;
}

.cold-f2a7 {
    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);
}

.cold-f2a7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.cold-f2a7 .chip-ea06 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold-f2a7 .avatar-aae7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.backdrop-new-ef29 {
    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);
}

.backdrop-new-ef29 .paragraph-small-5b3d {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.down_68a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_32d7 {
    margin: 2rem 0;
}

.status_under_ab6a {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_medium_029f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_5ade {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.large-7d6c {
    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);
}

.large-7d6c:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.large-7d6c.fn-active-a1b8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_207a {
    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);
}

.video-2437 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video-2437 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.photo-2a3c {
    padding: var(--section-padding);
}

.disabled-de1d {
    margin: 2rem 0;
}

.table-14a8 {
    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);
}

.table-14a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .table-14a8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.green-336a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.dim-0298 {
    flex: 1;
}

.dropdown-72bb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-cool-7acf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.breadcrumb_dark_c2c9 {
    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;
}

.bottom-d1d6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.box_wide_03db {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.heading-150f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo_glass_3d77 {
    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;
}

.logo_glass_3d77:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.alert-wide-aa87 {
    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);
}

.primary_copper_a9b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary_copper_a9b6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.tabs-motion-a16d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-e3ec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .basic-e3ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-e3ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_short_c3be {
    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;
}

.message_short_c3be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.outline_dc35 {
    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;
}

.shadow_f16a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.glass-1aa5 {
    font-size: 2rem;
}

.title-bottom-25fe {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.column-south-4cde {
    flex: 1;
}

.article-west-6c47 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.backdrop_clean_656f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-static-ca5b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-fdf2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.frame_tiny_2cb5 {
    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;
}

.warm_6321 {
    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;
}

.warm_6321:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.element-f8da {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_static_0ccb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh-b864 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .fresh-b864 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_short_8739 {
    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);
}

.bright_52ae {
    color: var(--text-white);
    font-weight: 600;
}

.hard-f23d {
    color: var(--accent-color);
    font-weight: 600;
}

.heading_098b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.heading_098b strong {
    color: var(--accent-color);
}

/* Security Section */
.outline-dim-53bf {
    padding: var(--section-padding);
}

/* Benefits Section */
.background_382c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.background-f40a {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.banner-cold-5d7f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-4e1b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.top-b104 {
    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) {
    .top-b104 {
        flex-direction: column;
        gap: 1rem;
    }
}

.top-b104:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.top-b104 .section_pro_ba58 {
    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;
}

.top-b104 .title_easy_a878 {
    flex: 1;
}

.top-b104 .lite_60da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.top-b104 .glass_ccc3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outer_687d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_687d .grid-ab3b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer_687d .slider_white_dd21 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer_687d .slider_white_dd21 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outer_687d .slider_white_dd21 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wide_339f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.medium_3e58 {
    padding: var(--section-padding);
}

.out_f96e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .out_f96e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-complex-7de4 {
    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);
}

.outline-complex-7de4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.outline-complex-7de4 .notice_blue_d108 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-complex-7de4 .plasma-55c4 {
    flex: 1;
}

.outline-complex-7de4 .paper-aa9a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-complex-7de4 .text_upper_e5cb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list_5d51 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_5d51 .narrow-2ee8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_5d51 .surface-2540 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.list_5d51 .surface-2540 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);
}

.list_5d51 .surface-2540 li:last-child {
    border-bottom: none;
}

.list_5d51 .surface-2540 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;
}

.list_5d51 .surface-2540 li strong {
    color: var(--text-white);
}

.thumbnail_8ed1 {
    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);
}

.thumbnail_8ed1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_8ed1 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.caption-under-72f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-hot-446d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .description-hot-446d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_cool_1e7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hidden_cool_1e7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.yellow_ea0d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.under_66b9 {
    font-size: 2rem;
}

.layout-green-c05e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-c3cf {
    flex: 1;
}

.layout_645a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_645a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.layout_645a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.primary-east-e5d5 {
    margin-top: 3rem;
}

.gas-8d62 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.copper-e2a7 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main_wood_5e0c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_wood_5e0c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.main_wood_5e0c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.main_wood_5e0c li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.hover_9e23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_0e87 {
    margin: 2rem 0;
}

.tall-c409 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.tall-c409 .disabled_gas_1a9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs_last_8c60 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tabs_last_8c60 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.background_left_085a {
    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);
}

.background_left_085a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.picture-under-32cf {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.first-21a4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.background-under-ca14 {
    padding: var(--section-padding);
}

.media_down_bcc5 {
    margin: 2rem 0;
}

.surface-610b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .surface-610b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface-610b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_glass_de16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient_glass_de16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer-1e1c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tiny_3022 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.message-old-8765 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.message-old-8765.pressed_2b05 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.progress-ed88 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.action-c786 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.logo_05c2 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.outline_d64c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image_selected_e643 {
    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);
}

.image_selected_e643 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_selected_e643 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.accent-e2be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-e9d7 {
    margin: 2rem 0;
}

.slider-tiny-5b44 {
    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) {
    .slider-tiny-5b44 {
        flex-direction: column;
        gap: 1rem;
    }
}

.slider-tiny-5b44:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slider-tiny-5b44::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);
}

.overlay-yellow-fab0 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.input_894b {
    flex: 1;
}

.mask_4c7f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination-motion-fc5a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-motion-fc5a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_661a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_a34d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination-c19f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination-c19f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title-fluid-c290 {
    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);
}

.overlay-647d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media_cool_f0ca {
    flex: 1;
}

.component_mini_2b30 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.video-437d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.soft-ba9a {
    margin-top: 2rem;
    text-align: center;
}

.card_brown_5426 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.card_brown_5426 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.column-thick-d931 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-thick-d931 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-8958 {
    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);
}

.media-8958:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media-8958 .widget-gas-99b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-8958 .fresh-60a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.media-8958 .primary-dim-c7d3 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.media-8958 .dirty-50dd {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.list-629e {
    padding: var(--section-padding);
}

.medium_cce1 .detail_dark_15bf {
    flex: 1;
}

/* Promo Calendar Section */
.photo-out-4412 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-last-2ec0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-last-2ec0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_904b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_9b00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.badge-dirty-11ae {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chip-8185 {
    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);
}

.paper-64fc {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.overlay_silver_296a {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.notification_paper_70b5 {
    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);
}

.notification_paper_70b5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification_paper_70b5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.message-simple-8dec {
    padding: var(--section-padding);
}

.liquid_e9ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .liquid_e9ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notification-6990 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-49d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer_small_0f3d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_small_0f3d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-tiny-4d47 {
    margin-top: 3rem;
}

.filter-tiny-4d47 .gas-8d62 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.filter-tiny-4d47 .copper-e2a7 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-tiny-4d47 .main_wood_5e0c {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.filter-tiny-4d47 .main_wood_5e0c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter-tiny-4d47 .main_wood_5e0c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter-tiny-4d47 .main_wood_5e0c li strong {
    color: var(--warning-color);
}

.pro_7a8a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pro_7a8a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.section_bronze_225d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-bca6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-bca6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_gold_2eac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_gold_2eac .disabled_gas_1a9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.left_e8c5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tooltip_2752 {
    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);
}

.tooltip_2752:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accordion-west-b83e {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_4d64 {
    flex: 1;
}

.footer_upper_d619 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.table_wide_1bf1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.south_cc35 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.heading-fc69 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight_gold_cd83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .highlight_gold_cd83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-9440 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard-9440:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input-easy-83e3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_ee02 {
    color: var(--text-gray);
    font-size: 1rem;
}

.fixed-7137 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-solid-fcfe {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.video-solid-fcfe strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.widget_d37a { 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; }
.last_3d4b, .image_5031 { max-width:100%; height:auto; }

.background_copper_1eb0, .fast_a685, .label_hard_368e { white-space:normal; }

.icon-black-cf42,
.notice_5686,
.card-medium-7fd5,
.column-thick-d931,
.disabled_center_62d0,
.logo-north-477e {
  flex-wrap:wrap;
}

[class*="grid"],
.highlight_gold_cd83,
.surface-610b,
.badge-bfbc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.column_88d9 img,
.notice_5686 img,
.mask_281b img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.icon-light-4a56, .center-f9b6,
.dropdown_e6eb, .alert_lower_fe69 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tabs-light-9f51 { width:100%; overflow-x:auto; }
.tabs-light-9f51 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.thick-50aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .thick-50aa {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.heading-9035 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.yellow-33df,
.tabs-first-2a8c,
.pattern_current_41a4,
.table-9a8d,
.green-6dba,
.highlight_gold_cd83,
.surface-610b,
.badge-bfbc,
.hard-9a6a,
.disabled-de1d,
.thick-50aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .yellow-33df,
  .tabs-first-2a8c,
  .pattern_current_41a4,
  .table-9a8d,
  .green-6dba,
  .highlight_gold_cd83,
  .surface-610b,
  .badge-bfbc,
  .hard-9a6a,
  .disabled-de1d,
  .thick-50aa {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.info-65a6,
.box_af37,
.hard-9440,
.border_1b2e,
.gradient_glass_de16,
.stone-3c23,
.table-14a8,
.heading-9035 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.primary_rough_c6a4,
.hard-f770,
.notice-advanced-9c63 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.primary_rough_c6a4 > *,
.hard-f770 > *,
.notice-advanced-9c63 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a17b */
.promo-block-h6 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
