/* {$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;
}

.primary_5b5e {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.preview_e084 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .preview_e084 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .preview_e084 {
        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 */
.yellow_d803 {
    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);
}

.bronze_64ab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .bronze_64ab {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .info_16da {
        grid-column: 1;
    }
    
    .avatar_orange_d483 {
        grid-column: 2;
    }
    
    .basic-6ddb {
        grid-column: 3;
    }
}

.info_16da img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.info_16da:hover img {
    transform: scale(1.05);
}

/* Navigation */
.pattern_large_175d {
    display: none;
}

@media (min-width: 1024px) {
    .pattern_large_175d {
        display: block;
    }
}

/* Grouped Navigation */
.modal-e7d1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.alert_brown_8dc2 {
    position: relative;
}

.item-cc10 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.alert_brown_8dc2 .section-center-cd89 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.section-center-cd89 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.tag_last_24a2 {
    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;
}

.tag_last_24a2:hover,
.tag_last_24a2.fn-active-7670 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.thumbnail-top-55b1 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .thumbnail-top-55b1 {
        display: flex;
    }
}

/* Mobile Register Button */
.avatar_orange_d483 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .avatar_orange_d483 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.red-1f3d {
    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;
}

.red-1f3d::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 */
.basic-6ddb {
    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) {
    .basic-6ddb {
        display: none;
    }
}

.basic-6ddb span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.basic-6ddb.fn-active-7670 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.basic-6ddb.fn-active-7670 span:nth-child(2) {
    opacity: 0;
}

.basic-6ddb.fn-active-7670 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.column-da54 {
    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;
}

.column-da54.fn-active-7670 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.over-fed2 {
    overflow: hidden;
}

.black_3d9c {
    list-style: none;
    padding: 0.75rem 0;
}

.badge_b2e6 {
    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;
}

.badge_b2e6:hover,
.badge_b2e6.fn-active-7670 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.badge_b2e6.media_9356 {
    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;
}

.badge_b2e6.media_9356::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 */
.banner-cold-ae88 {
    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;
}

.caption-current-f201 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.caption-current-f201:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.smooth-9fac {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.smooth-9fac:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.avatar_62dd {
    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;
}

.avatar_62dd:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.shade-1854 {
    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;
}

.column_warm_4abe {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.column_warm_4abe:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.surface_b1a0 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.surface_b1a0:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hard-2b3f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hard-2b3f: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);
}

.description_6b22 {
    font-size: 1em;
    font-weight: 700;
}

.paragraph_iron_d117 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.component-7277 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.component-7277::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.notice_center_8050 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .notice_center_8050 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.label-e178 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overlay_selected_89d9 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.top_5b89 {
    margin-bottom: 2rem;
}

.static_556e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .static_556e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_0486 {
    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);
}

.tooltip_5ead {
    font-size: 1.5rem;
}

.item-large-781f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.solid_7ba0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-fb37 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.top-fb37:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.button-short-dba0 {
    text-align: center;
    margin-bottom: 3rem;
}

.module-f55a {
    margin-bottom: 1rem;
}

.gallery_thick_ea3d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hover-hard-adb2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hover-hard-adb2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hover-hard-adb2.dropdown_prev_d93f {
        direction: rtl;
    }
    
    .hover-hard-adb2.dropdown_prev_d93f > * {
        direction: ltr;
    }
}

.hero-simple-6304 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hero-simple-6304:first-child {
    margin-top: 0;
}

.first-9ab7 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hot_5ac7 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hot_5ac7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.banner-solid-a5b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-solid-a5b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_5ffb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight-46e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.element-complex-87c9 {
    list-style: none;
}

.element-complex-87c9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element-complex-87c9 li:last-child {
    border-bottom: none;
}

/* Games Features */
.filter-north-e66a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.disabled_basic_56e4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.orange-80cf {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.silver-23c2 {
    margin: 2rem 0;
}

.aside_gold_89d9 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.component-bottom-e08e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.notification_copper_e50e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.down_d18b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.easy_e284 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_e284 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_soft_2316 {
    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);
}

.video_soft_2316:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner_warm_58c4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.out_b698 {
    font-size: 1.5rem;
}

.logo-5b4f {
    color: var(--accent-color);
    margin: 0;
}

.shade-green-08f1 {
    list-style: none;
}

.shade-green-08f1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.shade-green-08f1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.texture-south-165e {
    margin: 2rem 0;
}

.feature_yellow_3bc2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.carousel_active_a60f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel_active_a60f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-2fe9 {
    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);
}

.list_b3cc {
    font-size: 1.25rem;
}

.video_61f6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.search_bright_e7f0,
.first_d0b3 {
    text-align: center;
    margin: 2rem 0;
}

.small_4d43,
.yellow-7257 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.filter-4f38 {
    margin: 2rem 0;
    text-align: center;
}

.wrapper-3da1 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wrapper-3da1::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;
}

.shade_stale_8a38 {
    position: relative;
    z-index: 1;
}

.background-bottom-2c49 {
    margin-bottom: 1rem;
}

.iron_ef3e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bronze-a586 {
    margin-bottom: 3rem;
}

.heading-eb64 {
    margin-top: 3rem;
}

.thick-39a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .thick-39a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick-39a6 .red_0486 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed-1932 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-2f9b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.message_huge_e521 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.down-b429 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .down-b429 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .down-b429 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.black-caf9 {
    margin-bottom: 1rem;
}

.progress-selected-1019 img {
    margin-bottom: 1rem;
}

.breadcrumb-f6a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-ae29 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hot-0ee5 {
    list-style: none;
}

.hot-0ee5 li {
    margin-bottom: 0.5rem;
}

.hot-0ee5 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hot-0ee5 a:hover {
    color: var(--accent-color);
}

.liquid_862e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gas-6d6d {
    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);
}

.gas-6d6d:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.inner_08c4 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.inner_08c4 p {
    margin-bottom: 0.25rem;
}

.old_a2f2 {
    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) {
    .old_a2f2 {
        flex-direction: row;
    }
}

.wrapper-active-bc83 {
    text-align: center;
}

@media (min-width: 768px) {
    .wrapper-active-bc83 {
        text-align: left;
    }
}

.wrapper-active-bc83 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface-plasma-4953 {
    font-size: 0.75rem !important;
}

.section_gas_a3f5 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gradient_cd9c {
    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);
    }
}

.border-under-71a0 {
    animation: fadeInUp 0.6s ease-out;
}

.pro-78f0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.clean_86ab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean_86ab {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pattern_cb01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_cb01 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-f5fc {
    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);
}

.brown-f5fc .orange-80cf {
    font-size: 1.25rem;
}

.brown-f5fc .input-small-afc2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.cold_d6b9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cold_d6b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-bright-a3e3 {
    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);
}

.link-bright-a3e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_red_11fa {
    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);
}

.header_e6a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message_hovered_25e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_f6f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_cold_7c20 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component_cold_7c20 .pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_cold_7c20 .pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_9290 {
    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);
}

.current-3af5 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.current-3af5 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.current-3af5 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.description-db45 {
    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);
}

.notice-short-9537 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.item_dynamic_3b98 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item_dynamic_3b98 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.item_dynamic_3b98 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);
}

.item_dynamic_3b98 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.item_dynamic_3b98 input::placeholder {
    color: var(--text-muted);
}

.stale_973d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview_52bc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.preview_52bc input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.huge_95ce {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.huge_95ce:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.carousel_active_a60f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_active_a60f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-2fe9 {
    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-2fe9 .list_b3cc {
    font-size: 1.25rem;
}

.logo-2fe9 .video_61f6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.rough-956f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_clean_d351 {
    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);
}

.module_clean_d351 .orange-80cf {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_clean_d351 .pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_clean_d351 .pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_a604 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-65f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary-65f1 .article_active_cae7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-65f1 .black-1b61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-a676 {
    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);
}

.row_fluid_1a26 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_fluid_1a26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-center-b06a {
    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);
}

.nav-center-b06a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-selected-d9a6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bottom-4f56 {
    flex: 1;
}

.action-953c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active-bright-81b9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown_cold_b92c {
    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);
}

.dropdown_cold_b92c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.blue-f46b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue-f46b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_70c9 {
    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);
}

.aside_70c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_2758 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered_4b5b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.background_huge_0961 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail-purple-e222 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider_36f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-62fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-liquid-f4ad {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-liquid-f4ad .label_ccea {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-liquid-f4ad .main_liquid_b6d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-4d3f {
    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);
}

.bottom-710a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-0ecd {
    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);
}

.center-0ecd .orange-80cf {
    font-size: 2rem;
    flex-shrink: 0;
}

.center-0ecd .pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center-0ecd .pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-cool-d2b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-cool-d2b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-04cd {
    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);
}

.thick-04cd:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.panel_advanced_e3d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_advanced_e3d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow_c3a8 {
    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);
}

.narrow_c3a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-3467 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-selected-b942 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component-bottom-e08e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.orange-021b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.background_orange_08de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-top-6872 {
    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);
}

.gradient-top-6872:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_2ee5 {
    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);
}

.menu-dim-732f {
    flex: 1;
}

.pink_1bdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.module-75ed {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero_narrow_e9ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_7558 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_ed3b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_ed3b .article_active_cae7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_ed3b .black-1b61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_d0b3 {
    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);
}

.container-ef36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-ef36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.large-f2bf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-f2bf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-e5b7 {
    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);
}

.shade-e5b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_a6e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_854d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion-e4aa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.purple_b643 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.red-f36f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-41f9 {
    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);
}

.sort_smooth_1bd5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_simple_b1a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.purple-fef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-710a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-0ecd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.center-0ecd .pink_b0fc {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center-0ecd .pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-e1c9 {
    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);
}

.table-selected-e5e7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table-selected-e5e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table-selected-e5e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_tiny_bbc8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature_tiny_bbc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-selected-4915 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_b870 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gold-d013 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tag-61ed {
    padding: 1.5rem;
}

.tag_c798 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown-iron-7ae9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-iron-7ae9 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;
}

.dropdown-iron-7ae9 li:last-child {
    border-bottom: none;
}

.dropdown-iron-7ae9 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.outline-lite-8937 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-lite-8937 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_3f41 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border_3f41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink-c470 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_4672 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-old-bd47 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.alert_2612 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-thick-7425 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_57f1 {
    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);
}

.alert-prev-6cb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium_1b71 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus_7f68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_ce8d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.overlay-small-eb51 {
    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);
}

.hidden_middle_203c {
    text-align: center;
}

.mini_c398 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_middle_8abf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-e87b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-e87b .pink_b0fc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced-e87b .pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_bottom_a9ee {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid_bottom_a9ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_bottom_a9ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-ec91 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo-ec91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-05fa {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.full_9709 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pink_b0fc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.advanced_fb62 {
    padding: 1.5rem;
}

.pagination-tall-d312 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solid-fc5d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid-fc5d 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-fc5d li:last-child {
    border-bottom: none;
}

.solid-fc5d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.background-active-7ed7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-0a09 {
    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);
}

.gallery-0a09:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-231c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown_e9a7 {
    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);
}

.video_red_11fa {
    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;
}

.header_e6a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.message_hovered_25e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-47ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-cold-616f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered_cf13 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient-brown-067e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.title_47c3 {
    display: flex;
    gap: 1rem;
}

.title_47c3 .avatar-f065 {
    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;
}

.table-hovered-a33d {
    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);
}

.outer_6191 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.last_9ad4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.last_9ad4 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;
}

.last_9ad4 li:last-child {
    border-bottom: none;
}

.last_9ad4 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.message_left_c7bf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_left_c7bf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_left_c7bf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black-b927 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.black-b927:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-light-fbdd {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active-698f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.label_ccea {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.video-7f75 {
    font-size: 1rem;
}

.badge-new-5d0a {
    padding: 1.5rem;
}

.main_liquid_b6d9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.right_4f15 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.right_4f15 .hidden_middle_203c {
    text-align: center;
}

.right_4f15 .tabs-smooth-c235 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.right_4f15 .complex_4e41 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.video-yellow-6ff0 {
    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);
}

.video-yellow-6ff0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.heading-prev-4d8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-prev-4d8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-7ccd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel-7ccd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-fixed-9bb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left-4784 {
    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);
}

.label-under-ca03 {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-prev-ec6b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_east_a2c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-6371 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-743a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading-cdeb {
    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);
}

.black-44b3 {
    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;
}

.black-44b3.link_dynamic_13d2 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.black-44b3.hidden_e477 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.black-44b3.column-medium-c90e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.black-44b3.panel-13f6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.black-44b3.modal-475a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.outline_east_95ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dim-2e8e {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-969b {
    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);
}

.mini_3b3a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.first_a604 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.first_a604 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;
}

.first_a604 li:last-child {
    border-bottom: none;
}

.first_a604 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.backdrop_e821 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .backdrop_e821 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_e821 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-0097 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shade-0097:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-0097.new_d55b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .shade-0097.new_d55b {
        grid-column: span 3;
    }
}

.header-inner-3a9c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.shade-0097.new_d55b .header-inner-3a9c {
    background: rgba(6, 182, 212, 0.1);
}

.gallery_e551 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.white-fe84 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.shade-0097.new_d55b .white-fe84 {
    color: var(--info-color);
}

.fluid-ee3a {
    padding: 1.5rem;
    text-align: center;
}

.item-light-3d58 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.shade-0097.new_d55b .item-light-3d58 {
    color: var(--info-color);
}

.disabled_wide_8fd2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.text_fast_81f9 {
    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 */
.old_17ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_17ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_096f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.purple_096f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.silver-4339 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_clean_d351 {
    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);
}

.list_b3cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.next-234d {
    flex: 1;
}

.feature_yellow_3bc2 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-4da9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-rough-baab {
    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);
}

.accordion-283f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.row-warm-46ba {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gradient_cd9c {
    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);
}

.message_d529 {
  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);
}

.message_d529 .hidden_middle_203c {
    text-align: center;
}

.message_d529 .mini_c398 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.message_d529 .tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.info_hot_fa25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_8be4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_8fde {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown-342a {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-2b68 {
    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);
}

.box_south_04aa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice-019d {
    color: var(--text-gray);
    line-height: 1.6;
}

.north-e6c3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .north-e6c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north-e6c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-hard-100b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-hard-100b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_bc0a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.highlight_d6a4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focus-c764 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.easy-836b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.easy-836b.highlight-upper-32df {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.easy-836b.row-602f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.easy-836b.pagination_d04c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.warm_7854 {
    padding: 1.5rem;
    text-align: center;
}

.progress_0715 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search_gold_0f71 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search_gold_0f71 .menu-action-488e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tertiary-24e5 {
    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);
}

.tertiary-24e5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.stale_8ca2 {
  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);
}

.under_f492 {
    text-align: center;
}

.under_f492 .mini_c398 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.under_f492 .tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.mini-6ce6 { text-align: center; }
.shadow-0f5f { text-align: left; }
.cool-8569 { text-align: right; }

.rough_ebb2 { margin-bottom: 0; }
.input-4f04 { margin-bottom: 0.5rem; }
.in-ed03 { margin-bottom: 1rem; }
.texture_71cf { margin-bottom: 1.5rem; }
.banner-light-1c90 { margin-bottom: 2rem; }

.gallery-motion-9cba { margin-top: 0; }
.wood-1123 { margin-top: 0.5rem; }
.up_ddf4 { margin-top: 1rem; }
.surface_hard_5972 { margin-top: 1.5rem; }
.tooltip-73a2 { margin-top: 2rem; }

.fn-hidden-7670 { display: none; }
.fn-visible-7670 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .component-7277 {
        padding: 6rem 0 3rem;
    }
    
    .notice_center_8050 {
        text-align: center;
    }
    
    .hover-hard-adb2 {
        text-align: center;
    }
    
    .static_556e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .yellow_d803,
    .column-da54,
    .wrapper-3da1,
    .message_huge_e521 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .component-7277 {
        background: none;
    }
}

/* Providers Section */
.container_black_bda8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_295d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_295d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion_295d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-038f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.west-038f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-7e27 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.layout_64f5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bright-4c11 {
    list-style: none;
    padding: 0;
}

.bright-4c11 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.bright-4c11 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.active_b753 {
    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);
}

.active_b753 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pressed-8526 {
    padding: var(--section-padding);
}

.preview_solid_bef7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_solid_bef7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-18b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-18b9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.surface_light_6717 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hero-83b2 {
    display: flex;
    flex-direction: column;
}

.panel-c944 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.video-green-f963 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.logo-blue-740c {
    color: var(--accent-color);
}

.icon-ac1e {
    font-size: 1.25rem;
}

.description-d62d {
    margin-bottom: 1rem;
}

.description-d62d p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.dynamic_c04e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.red-56ec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hidden_middle_203c {
    text-align: center;
}

.mini_c398 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.content-7ea9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-2bb8 {
    margin: 2rem 0;
}

.accordion-liquid-8788 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.accordion-liquid-8788 .orange-80cf {
    font-size: 2rem;
    flex-shrink: 0;
}

.center-ad17 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.first-233a {
    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;
}

.first-233a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled-slow-8b7d {
    font-size: 2rem;
}

.item_7b8f {
    display: flex;
    flex-direction: column;
}

.box-6c2c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.light-4846 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.popup-79b9 {
    padding: var(--section-padding);
}

.hard_9fbf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hard_9fbf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_9fbf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite_ea12 {
    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);
}

.lite_ea12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lite_ea12 .mini_c398 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.lite_ea12 .tabs-smooth-c235 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.lite_ea12 .info-warm-2401 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.blue_9d30 {
    margin-top: 4rem;
}

.black-4e35 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.inner-2d39 {
    overflow-x: auto;
}

.notification_b84b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.notification_b84b thead {
    background: var(--accent-color);
}

.notification_b84b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.notification_b84b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_b84b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.notification_b84b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.highlight-clean-cfef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel_c6a1 {
    max-width: 900px;
    margin: 0 auto;
}

.pink-cfc6 {
    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);
}

.pink-cfc6:hover {
    border-color: var(--accent-color);
}

.east_ced7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.east_ced7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.large_0d57 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.pink-cfc6.fn-active-7670 .large_0d57 {
    transform: rotate(45deg);
}

.overlay_out_34a6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.pink-cfc6.fn-active-7670 .overlay_out_34a6 {
    max-height: 1000px;
}

.overlay_out_34a6 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.disabled_0feb {
    padding: var(--section-padding);
}

.current-3af5 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.grid-46f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action-fa09 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-fa09 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-a014 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-e146 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-slow-be69 {
    font-size: 2rem;
}

.sidebar-780d {
    color: var(--text-white);
    margin: 0;
}

.gold-0cfa {
    list-style: none;
    padding: 0;
}

.gold-0cfa li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-0cfa li:last-child {
    border-bottom: none;
}

.blue_62a1 {
    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);
}

.blue_62a1 p {
    color: var(--success-color);
    margin: 0;
}

.input-south-43bd {
    margin-top: 3rem;
}

.outer_6191 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary_over_7986 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary_over_7986 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status-120b {
    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);
}

.content_9ef5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status-120b p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.accent_in_c076 {
    padding: var(--section-padding);
}

.short_873c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_873c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-c020 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.orange-c020:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.link-plasma-c497 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.outline-hot-e470 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.steel_a803 {
    flex: 1;
}

.progress-7e54 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.accent-east-bce1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pressed_7cae {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_16a4 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video_16a4:last-child {
    border-bottom: none;
}

/* Comparison Section */
.border_thick_d08f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.breadcrumb_black_a2b1 {
    padding: var(--section-padding);
}

.chip-24c7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hover-hovered-e6de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-hovered-e6de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.new_d040 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-894d, .input-dim-644c, .paragraph-4dbd {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.paragraph-4dbd {
    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 */
.main_8e25 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid-60c1 {
    margin: 2rem 0;
}

.backdrop_63c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_pink_224f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.video-south-8687 {
    list-style: none;
    padding: 0;
}

.video-south-8687 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;
}

.video-south-8687 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.video-south-8687 li:last-child {
    border-bottom: none;
}

.wrapper_lite_b68a {
    text-align: center;
    margin-top: 2rem;
}

.video_e24b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.list_light_5aa8 {
    padding: var(--section-padding);
}

.last_0fa6 {
    margin: 2rem 0;
}

.card-f0af {
    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) {
    .card-f0af {
        flex-direction: column;
        align-items: flex-start;
    }
}

.card-f0af:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.disabled-64f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.glass-985e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.top-55f7 {
    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;
}

.action-f295 {
    flex: 1;
}

.nav_fb97 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.media_full_6877 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list-a298 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.photo-1b20 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .photo-1b20 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.red_5370 {
    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);
}

.red_5370:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red_5370 .mini_c398 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red_5370 .tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hidden_3c8b {
    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);
}

.paragraph_26c3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.paragraph_26c3 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.primary_hot_2bc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .primary_hot_2bc2 {
        grid-template-columns: 1fr 1fr;
    }
}

.content-last-7401 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_pressed_8327 {
    margin-bottom: 1.5rem;
}

.secondary_pressed_8327 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.secondary_pressed_8327 input,
.secondary_pressed_8327 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;
}

.secondary_pressed_8327 input:focus,
.secondary_pressed_8327 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.out-3b57 {
    width: 100%;
    margin-top: 1rem;
}

.badge_4c80 {
    display: flex;
    align-items: center;
}

.pink-675b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.sort-up-4610 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.search-6293 {
    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;
}

.motion_c4d5 {
    color: var(--text-gray);
}

.simple-c9aa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.smooth-8bfb {
    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);
}

.smooth-8bfb p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.middle-650c {
    margin-top: 3rem;
}

.dirty-c634 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.component_b979 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-over-148a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.layout-2606 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-2606:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hover-dc47 {
    padding: var(--section-padding);
}

.fast_2230 {
    margin: 2rem 0;
}

.card_fixed_4483 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.icon-north-7482 {
    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;
}

.icon-north-7482:hover, .icon-north-7482.fn-active-7670 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.logo_fde8 {
    display: none;
}

.logo_fde8.fn-active-7670 {
    display: block;
}

.overlay-up-c93d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-f225 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.glass_1b72 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.glass_1b72 ul {
    list-style: none;
    padding: 0;
}

.glass_1b72 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.glass_1b72 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.status-b908 {
    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 */
.text_cf36 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tall-34e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-under-0a5a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.soft_515e {
    color: var(--accent-color);
    margin: 0;
}

.glass-7792 {
    display: flex;
    gap: 1.5rem;
}

.gallery-0072 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pro_f3bd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hover_f99e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover_f99e.focus-2f1c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hover_f99e.light_e6c0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hover_f99e.picture_019f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fixed-944f {
    margin-top: 2rem;
}

.link_b499 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.carousel-mini-1e48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .carousel-mini-1e48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-aede {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.pattern_out_6963 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.right-bab2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.over-55ef {
    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 */
.nav_1816 {
    padding: var(--section-padding);
}

.table_89a8 {
    margin: 2rem 0;
}

.hero_4020 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.notification_left_5f3d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.active_1f83 {
    list-style: none;
    padding: 0;
}

.active_1f83 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;
}

.active_1f83 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.active_1f83 li:last-child {
    border-bottom: none;
}

.sort-7fea {
    margin: 2rem 0;
}

.primary-1f25 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.black-0bef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black-0bef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay-in-8fdd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-afd6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-f918 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary_990b {
    margin-top: 2rem;
}

.action-953c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.menu_5c75 {
    list-style: none;
    padding: 0;
}

.gold_b98f {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gold_b98f a {
    color: var(--accent-color);
    text-decoration: none;
}

.gold_b98f a:hover {
    text-decoration: underline;
}

.fast-4801 {
    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 */
.texture-c483 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-bottom-103f {
    margin: 2rem 0;
}

.box_c71a {
    margin-bottom: 3rem;
}

.box_c71a .surface_pink_224f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dynamic_48fa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.component-fixed-98a1 {
    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);
}

.component-fixed-98a1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.header-slow-d994 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .header-slow-d994 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-rough-853a {
    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 */
.first_e2b0 {
    padding: var(--section-padding);
}

.sidebar_5773 {
    margin: 2rem 0;
}

.border-hot-2bdf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup-warm-d03c {
    overflow-x: auto;
    margin: 2rem 0;
}

.picture_complex_d27a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.mask_7db9 {
    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;
}

.silver_25a1 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.input-small-5d68 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .input-small-5d68 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-bottom-3a9a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-bottom-3a9a .orange-80cf {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.filter-bottom-3a9a .pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_29c5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.narrow-5a5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_4465 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_4465 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-smooth-3c7e {
    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;
}

.grid-smooth-3c7e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tooltip_cool_b988 {
    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);
}

.inner-ea2f {
    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;
}

.banner_766d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dim_837a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.footer_fd5b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.box-1783 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link_7b96 {
    color: var(--text-white);
    font-weight: 600;
}

.thumbnail-b3f9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.column-slow-859a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column-slow-859a .avatar-f065 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tall_807c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tall_807c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_ed2f {
    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);
}

.west_ed2f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.west_ed2f .mini_c398 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west_ed2f .tabs-smooth-c235 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pattern-c0b3 {
    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);
}

.popup-e27b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.popup-e27b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.red-f36f {
    margin: 2rem 0;
}

.gas-41f9 {
    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);
}

.gas-41f9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.sort_smooth_1bd5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text_dynamic_e187 {
    flex: 1;
}

.outline_simple_b1a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.purple-fef5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.bottom-710a {
    margin: 2rem 0;
}

.center-0ecd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-0ecd .pink_b0fc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.center-0ecd .pagination-tall-d312 {
    color: var(--text-gray);
    margin: 0;
}

.tall-e1c9 {
    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);
}

.tall-e1c9 .small_4d43 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.badge_29c5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.component_2ee5 {
    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;
}

.menu-dim-732f {
    flex: 1;
}

.module-75ed {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hero_narrow_e9ff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.video_red_11fa {
    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;
}

.badge_cb7c {
    flex: 1;
}

.header_e6a4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.message_hovered_25e6 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.hovered_cf13 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.gradient-brown-067e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.title_47c3 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.title_47c3 .avatar-f065 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.table-hovered-a33d {
    margin-top: 2rem;
}

.table-hovered-a33d .outer_6191 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.overlay_complex_0f4c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-small-eb51 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .overlay-small-eb51 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-small-eb51 .hidden_middle_203c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_middle_8abf {
    margin: 2rem 0;
}

.advanced-e87b {
    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 */
.carousel-f552 {
    padding: var(--section-padding);
}

.advanced_fb62 {
    margin-top: 1rem;
}

.solid-fc5d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.solid-fc5d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.solid-fc5d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.first_b8b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current-f6c7 {
    margin: 2rem 0;
}

.description_6dd1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.background-glass-ade2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main_yellow_369d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.widget-5b84 {
    margin: 2rem 0;
}

.over-8306 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.over-8306 .surface_pink_224f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.middle_9c28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .middle_9c28 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-old-4a8c {
    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);
}

.paragraph-7e6a {
    color: var(--text-white);
    font-weight: 600;
}

.box_a66a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.static-0d37 {
    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);
}

.static-0d37 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.advanced-df95 {
    padding: var(--section-padding);
}

.gas_6302 {
    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;
}

.gas_6302:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.box_dim_c59f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box_dim_c59f .content_9ef5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_dim_c59f .in_4eba {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.narrow_c9c6 {
    flex: 1;
}

.texture-8ce1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background-next-319e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-next-319e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.background-next-319e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.item_482f {
    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);
}

.item_482f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item_482f strong {
    color: var(--warning-color);
}

/* Slots Section */
.frame_north_c246 {
    padding: var(--section-padding);
}

.slider_36f1 {
    margin: 2rem 0;
}

/* Table Games Section */
.image_new_d096 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-62fe {
    margin: 2rem 0;
}

.photo-liquid-f4ad {
    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);
}

.photo-liquid-f4ad:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.photo-liquid-f4ad .label_ccea {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-liquid-f4ad .main_liquid_b6d9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.orange-4d3f {
    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);
}

.orange-4d3f .small_4d43 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.container-ab01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_766c {
    margin: 2rem 0;
}

.shadow_stone_4b20 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-1084 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-last-9020 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.primary-b495 {
    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);
}

.primary-b495:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.primary-b495.fn-active-7670 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_north_5937 {
    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);
}

.iron-302b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.iron-302b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.notice-thick-7f9d {
    padding: var(--section-padding);
}

.frame-28ac {
    margin: 2rem 0;
}

.label_3066 {
    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);
}

.label_3066:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .label_3066 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notification-9fff {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.card_cold_dd90 {
    flex: 1;
}

.solid_95f1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.text-6d07 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture_advanced_8f22 {
    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;
}

.image-76e7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.layout-9612 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.card_8768 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout-full-f5c5 {
    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;
}

.layout-full-f5c5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.avatar-lower-8b88 {
    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);
}

.under_ed2a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.under_ed2a strong {
    color: var(--accent-color);
}

/* New Games Section */
.item-6a27 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_a04d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .form_a04d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_a04d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-343c {
    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;
}

.up-343c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb-hot-59fb {
    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;
}

.pattern_159c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.shadow_glass_9113 {
    font-size: 2rem;
}

.hero_up_b565 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.down-7a2e {
    flex: 1;
}

.silver_2ea0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.soft_221b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search_black_6607 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.heading_930c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background-e789 {
    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;
}

.full-9b1b {
    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;
}

.full-9b1b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.top-7931 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth_1a4e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary_green_2e1a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .primary_green_2e1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-north-c02c {
    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);
}

.label-static-6ee5 {
    color: var(--text-white);
    font-weight: 600;
}

.media_8043 {
    color: var(--accent-color);
    font-weight: 600;
}

.backdrop_steel_4768 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.backdrop_steel_4768 strong {
    color: var(--accent-color);
}

/* Security Section */
.form-left-4cae {
    padding: var(--section-padding);
}

/* Benefits Section */
.outer-3cbf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.cold-3e4b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.surface-rough-dff7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_9a61 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.wrapper-fbc1 {
    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) {
    .wrapper-fbc1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.wrapper-fbc1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper-fbc1 .video_red_11fa {
    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;
}

.wrapper-fbc1 .badge_cb7c {
    flex: 1;
}

.wrapper-fbc1 .header_e6a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wrapper-fbc1 .message_hovered_25e6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.silver-9a9d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-9a9d .feature_yellow_3bc2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.silver-9a9d .rough-956f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver-9a9d .rough-956f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.silver-9a9d .rough-956f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.article-cold-7254 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.medium-6ab0 {
    padding: var(--section-padding);
}

.gallery-plasma-e3e1 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-plasma-e3e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_bebf {
    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);
}

.menu_bebf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.menu_bebf .frame-liquid-db35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_bebf .chip_20c0 {
    flex: 1;
}

.menu_bebf .article_active_cae7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.menu_bebf .widget-selected-3540 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.backdrop-a1a6 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-a1a6 .panel_a261 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop-a1a6 .simple-5b1b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.backdrop-a1a6 .simple-5b1b 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);
}

.backdrop-a1a6 .simple-5b1b li:last-child {
    border-bottom: none;
}

.backdrop-a1a6 .simple-5b1b 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;
}

.backdrop-a1a6 .simple-5b1b li strong {
    color: var(--text-white);
}

.breadcrumb_small_0cea {
    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);
}

.breadcrumb_small_0cea p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb_small_0cea strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.content-f56e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge_e80a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .huge_e80a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-advanced-69fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-advanced-69fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tall-bb59 {
    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-1298 {
    font-size: 2rem;
}

.preview-842f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.form_white_0223 {
    flex: 1;
}

.upper_5199 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper_5199 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.upper_5199 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.video-gas-2d21 {
    margin-top: 3rem;
}

.hero_4020 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.notification_left_5f3d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active_1f83 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_1f83 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.active_1f83 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.active_1f83 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.panel_full_3cdd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_47c4 {
    margin: 2rem 0;
}

.dropdown_f5d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dropdown_f5d6 .surface_pink_224f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade-3adb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shade-3adb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient_678a {
    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);
}

.gradient_678a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.lower_0329 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pagination_steel_c552 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.left_0417 {
    padding: var(--section-padding);
}

.pattern-slow-1ef8 {
    margin: 2rem 0;
}

.article_ac8c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .article_ac8c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article_ac8c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-06a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-06a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bronze-87f9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.button-pressed-bde7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.table_prev_609e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table_prev_609e.cool_4b60 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.paragraph_f87b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.list_first_7fec {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.inner_04a6 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.narrow-57f4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.article-4000 {
    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);
}

.article-4000 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-4000 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.text-slow-eaec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-huge-a04e {
    margin: 2rem 0;
}

.last-2a0d {
    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) {
    .last-2a0d {
        flex-direction: column;
        gap: 1rem;
    }
}

.last-2a0d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.last-2a0d::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);
}

.frame_7a72 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.panel-full-a7f4 {
    flex: 1;
}

.secondary_fluid_84f9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_9506 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_9506 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.section-15fc {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-128f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input_f9ec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input_f9ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_out_4d3f {
    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);
}

.button_ab59 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge_hard_bd9d {
    flex: 1;
}

.cool-b834 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.box_f519 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.surface-dbc4 {
    margin-top: 2rem;
    text-align: center;
}

.tiny_815e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tiny_815e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.heading-prev-4d8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-prev-4d8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-7ccd {
    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);
}

.panel-7ccd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.panel-7ccd .pink-c470 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel-7ccd .filter_4672 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.panel-7ccd .modal-old-bd47 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.panel-7ccd .alert_2612 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.highlight_light_a948 {
    padding: var(--section-padding);
}

.left-4784 .element_8bde {
    flex: 1;
}

/* Promo Calendar Section */
.surface_5276 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-8803 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-8803 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-first-1224 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_8f73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.component_silver_48a5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-green-717d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mask_advanced_de93 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview-motion-2f78 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.notification_7754 {
    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_7754 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification_7754 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.selected-6a64 {
    padding: var(--section-padding);
}

.focused-3969 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .focused-3969 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search_next_423d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-a356 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_894e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section_894e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.title-active-abe2 {
    margin-top: 3rem;
}

.title-active-abe2 .hero_4020 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.title-active-abe2 .notification_left_5f3d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-active-abe2 .active_1f83 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.title-active-abe2 .active_1f83 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.title-active-abe2 .active_1f83 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.title-active-abe2 .active_1f83 li strong {
    color: var(--warning-color);
}

.layout_e6c4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_e6c4 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.heading-af17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_6c24 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_6c24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-56f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-56f2 .surface_pink_224f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.focused-1915 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outline-dark-b6af {
    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);
}

.outline-dark-b6af:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.media-brown-096b {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_full_c4ba {
    flex: 1;
}

.red_4632 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.active-c05b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.icon-focused-a195 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.media_0061 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.badge-basic-33e4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .badge-basic-33e4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_886a {
    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);
}

.logo_886a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature-fixed-bc32 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fluid-358a {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph_26c3 {
    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);
}

.orange_5da7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.orange_5da7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.preview_e084 { 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; }
.top-fb37, .hot_5ac7 { max-width:100%; height:auto; }

.banner-cold-ae88, .avatar_62dd, .shade-1854 { white-space:normal; }

.notice_center_8050,
.hover-hard-adb2,
.old_17ee,
.heading-prev-4d8d,
.bottom-710a,
.north-e6c3 {
  flex-wrap:wrap;
}

[class*="grid"],
.badge-basic-33e4,
.article_ac8c,
.thick-39a6 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.component-7277 img,
.hover-hard-adb2 img,
.solid_7ba0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.label-e178, .overlay_selected_89d9,
.module-f55a, .gallery_thick_ea3d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.inner-2d39 { width:100%; overflow-x:auto; }
.inner-2d39 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.accordion_295d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .accordion_295d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.west-038f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.hard_9fbf,
.tertiary_9172,
.secondary-action-54c4,
.logo_fd7d,
.photo-1b20,
.badge-basic-33e4,
.article_ac8c,
.thick-39a6,
.stale_8ca2,
.frame-28ac,
.accordion_295d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .hard_9fbf,
  .tertiary_9172,
  .secondary-action-54c4,
  .logo_fd7d,
  .photo-1b20,
  .badge-basic-33e4,
  .article_ac8c,
  .thick-39a6,
  .stale_8ca2,
  .frame-28ac,
  .accordion_295d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.lite_ea12,
.red_5370,
.logo_886a,
.red_0486,
.shadow-06a1,
.under_f492,
.label_3066,
.west-038f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.mask_dim_360e,
.info-dirty-0229,
.search-89eb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mask_dim_360e > *,
.info-dirty-0229 > *,
.search-89eb > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f51b */
.shadow-element-n7 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
