/* {$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;
}

.action_1be8 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hidden_1a27 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hidden_1a27 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hidden_1a27 {
        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 */
.pressed-1c34 {
    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);
}

.huge-fab5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .huge-fab5 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .list_dynamic_d215 {
        grid-column: 1;
    }
    
    .caption-stone-b391 {
        grid-column: 2;
    }
    
    .mask_fixed_d8c0 {
        grid-column: 3;
    }
}

.list_dynamic_d215 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.list_dynamic_d215:hover img {
    transform: scale(1.05);
}

/* Navigation */
.avatar-small-1cbf {
    display: none;
}

@media (min-width: 1024px) {
    .avatar-small-1cbf {
        display: block;
    }
}

/* Grouped Navigation */
.media-left-8d49 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.active-0740 {
    position: relative;
}

.sidebar_af74 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.active-0740 .shade-899f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.shade-899f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.upper-1091 {
    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;
}

.upper-1091:hover,
.upper-1091.fn-active-1721 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.notice-a5e5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .notice-a5e5 {
        display: flex;
    }
}

/* Mobile Register Button */
.caption-stone-b391 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .caption-stone-b391 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.title-0c17 {
    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;
}

.title-0c17::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 */
.mask_fixed_d8c0 {
    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) {
    .mask_fixed_d8c0 {
        display: none;
    }
}

.mask_fixed_d8c0 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.mask_fixed_d8c0.fn-active-1721 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mask_fixed_d8c0.fn-active-1721 span:nth-child(2) {
    opacity: 0;
}

.mask_fixed_d8c0.fn-active-1721 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-pink-2bc8 {
    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;
}

.nav-pink-2bc8.fn-active-1721 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.shade_tall_6981 {
    overflow: hidden;
}

.blue-2418 {
    list-style: none;
    padding: 0.75rem 0;
}

.narrow_63a6 {
    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;
}

.narrow_63a6:hover,
.narrow_63a6.fn-active-1721 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.narrow_63a6.thick-d280 {
    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;
}

.narrow_63a6.thick-d280::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 */
.aside_5ad4 {
    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;
}

.wide_8f32 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.wide_8f32:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.over_3119 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.over_3119:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.form_iron_109d {
    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;
}

.form_iron_109d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.top-06ca {
    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;
}

.focus_fixed_32c6 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.focus_fixed_32c6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.video-71d9 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.video-71d9:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pattern-steel-ff60 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pattern-steel-ff60: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);
}

.gallery-e6b6 {
    font-size: 1em;
    font-weight: 700;
}

.surface-cd5b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.clean_fbfb {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.clean_fbfb::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;
}

.silver_56f4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .silver_56f4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.highlight-outer-4432 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.layout_top_30b1 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.gradient-warm-befa {
    margin-bottom: 2rem;
}

.hero_a9d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero_a9d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_26f5 {
    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);
}

.message-e10c {
    font-size: 1.5rem;
}

.tertiary-8bdd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pink-76cd {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_smooth_dc86 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.dropdown_smooth_dc86:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pagination-ecab {
    text-align: center;
    margin-bottom: 3rem;
}

.badge-3168 {
    margin-bottom: 1rem;
}

.alert_efd6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gold_2cba {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gold_2cba {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .gold_2cba.current_9245 {
        direction: rtl;
    }
    
    .gold_2cba.current_9245 > * {
        direction: ltr;
    }
}

.icon_02c6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.icon_02c6:first-child {
    margin-top: 0;
}

.overlay_glass_96fc {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.heading_hot_4d72 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.heading_hot_4d72:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.primary-fc23 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-fc23 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_83d3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tall_e5d9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.under_0185 {
    list-style: none;
}

.under_0185 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.under_0185 li:last-child {
    border-bottom: none;
}

/* Games Features */
.plasma_698b {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fixed_c782 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.panel-light-c27c {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.smooth_726f {
    margin: 2rem 0;
}

.tooltip_fb52 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.search_down_8fa9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.pattern_center_eee5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.progress_wood_0e70 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.footer-71e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-71e9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_b58f {
    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);
}

.main_b58f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.basic-743e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chip-028a {
    font-size: 1.5rem;
}

.text-63f9 {
    color: var(--accent-color);
    margin: 0;
}

.small-5d7e {
    list-style: none;
}

.small-5d7e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.small-5d7e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.shade-first-fd3e {
    margin: 2rem 0;
}

.link_5f9c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.alert-4109 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .alert-4109 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_west_bed9 {
    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);
}

.module_cac0 {
    font-size: 1.25rem;
}

.steel-9765 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.text-070c,
.surface-8497 {
    text-align: center;
    margin: 2rem 0;
}

.modal-large-8afb,
.bronze_ed04 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.thumbnail_11a7 {
    margin: 2rem 0;
    text-align: center;
}

.description_purple_0761 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.description_purple_0761::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;
}

.widget_a7f0 {
    position: relative;
    z-index: 1;
}

.middle-01e9 {
    margin-bottom: 1rem;
}

.secondary_pro_f390 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blue-91c7 {
    margin-bottom: 3rem;
}

.caption_middle_2f68 {
    margin-top: 3rem;
}

.button-aacc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .button-aacc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-aacc .carousel_26f5 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel-rough-a4a0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border-37c0 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.footer-tiny-5f09 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.status-9198 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .status-9198 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-9198 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.header_fast_3a40 {
    margin-bottom: 1rem;
}

.container-west-096a img {
    margin-bottom: 1rem;
}

.overlay_e88f {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_cd10 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.heading-over-b86c {
    list-style: none;
}

.heading-over-b86c li {
    margin-bottom: 0.5rem;
}

.heading-over-b86c a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.heading-over-b86c a:hover {
    color: var(--accent-color);
}

.outline-6924 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.glass_cdab {
    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);
}

.glass_cdab:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.active_tall_c96f {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.active_tall_c96f p {
    margin-bottom: 0.25rem;
}

.dark_1e39 {
    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) {
    .dark_1e39 {
        flex-direction: row;
    }
}

.pattern-last-8d24 {
    text-align: center;
}

@media (min-width: 768px) {
    .pattern-last-8d24 {
        text-align: left;
    }
}

.pattern-last-8d24 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_f8f2 {
    font-size: 0.75rem !important;
}

.video-next-9fd9 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.down_17b8 {
    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);
    }
}

.form_fixed_6343 {
    animation: fadeInUp 0.6s ease-out;
}

.table-rough-9ca2 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.surface-a974 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-a974 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.highlight-d671 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-d671 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_3200 {
    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);
}

.main_3200 .panel-light-c27c {
    font-size: 1.25rem;
}

.main_3200 .motion-18e8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.form_8084 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form_8084 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_c8fd {
    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_c8fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_ba81 {
    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);
}

.pattern-9c94 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notification_b072 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_clean_0fe0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_in_562a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_in_562a .border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_in_562a .preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-easy-a01e {
    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);
}

.background_9091 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.background_9091 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background_9091 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hidden-5555 {
    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);
}

.lite_3d3b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tag_a1fd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag_a1fd label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tag_a1fd 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);
}

.tag_a1fd input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tag_a1fd input::placeholder {
    color: var(--text-muted);
}

.main-8fc8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.silver_a2bc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.silver_a2bc input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.liquid-c754 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.liquid-c754:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.alert-4109 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-4109 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_west_bed9 {
    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);
}

.highlight_west_bed9 .module_cac0 {
    font-size: 1.25rem;
}

.highlight_west_bed9 .steel-9765 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.action-9d7a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-selected-a0aa {
    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);
}

.status-selected-a0aa .panel-light-c27c {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-selected-a0aa .border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-selected-a0aa .preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_full_eefb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark_ca60 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark_ca60 .video-6109 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark_ca60 .nav-a77e {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_b988 {
    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);
}

.right_169b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right_169b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_1a45 {
    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);
}

.bright_1a45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hovered-fbd0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.summary-north-e220 {
    flex: 1;
}

.modal-d27c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wood_1efa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-bd7e {
    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);
}

.card-bd7e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.secondary-059c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-059c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-fce3 {
    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);
}

.right-fce3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel-d429 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-b24a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom_9e9d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box_upper_a191 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pagination_short_b78c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.orange_5279 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-inner-4b85 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview-inner-4b85 .border_short_cd43 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview-inner-4b85 .badge-full-185c {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_plasma_17c6 {
    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);
}

.menu_19ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-c9cf {
    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);
}

.hard-c9cf .panel-light-c27c {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-c9cf .border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-c9cf .preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-de6d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-de6d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark-afc1 {
    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);
}

.dark-afc1:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.action-d617 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-d617 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-orange-25a3 {
    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);
}

.notice-orange-25a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_new_b906 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_liquid_ef09 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search_down_8fa9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.secondary_lite_ae20 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.down-9e72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-cb87 {
    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);
}

.hidden-cb87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_88d8 {
    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);
}

.simple-d750 {
    flex: 1;
}

.active-large-3805 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.title-dirty-6d15 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.detail-medium-edc2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_solid_ec63 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_old_cdc3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_old_cdc3 .video-6109 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_old_cdc3 .nav-a77e {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-8497 {
    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);
}

.lite-c1bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-c1bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.right-2cd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-2cd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_4bd5 {
    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);
}

.accent_4bd5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink_6b3a {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_hard_0f62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.accent-e44c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.list-east-ccc2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.content_slow_f151 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-9492 {
    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);
}

.simple-4c0f {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-8f41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_6096 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_19ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-c9cf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hard-c9cf .border_middle_aa46 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-c9cf .preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_inner_44da {
    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);
}

.hero-110c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-110c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-110c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-inner-f12f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider-inner-f12f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_f35e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.sort_simple_5b57 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pink_96c5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.old_aaf1 {
    padding: 1.5rem;
}

.paragraph-solid-eb8a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overlay_over_fdde {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay_over_fdde 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;
}

.overlay_over_fdde li:last-child {
    border-bottom: none;
}

.overlay_over_fdde li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.gold_1cd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold_1cd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface-d390 {
    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);
}

.surface-d390:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-210d {
    font-size: 2rem;
    flex-shrink: 0;
}

.center_24d7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.middle_fe69 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component_liquid_bbb7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.surface_64d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_complex_53fa {
    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);
}

.focused-03d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_2288 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-clean-840a {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-fresh-20cc {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.list_white_b338 {
    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);
}

.card_slow_6e87 {
    text-align: center;
}

.shadow_7f58 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search_red_2ffd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue_a549 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_light_4a42 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_light_4a42 .border_middle_aa46 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_light_4a42 .preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_lite_9803 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup_lite_9803 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup_lite_9803 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-a0f5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.active-a0f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-9ba1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_369d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.border_middle_aa46 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.popup_e158 {
    padding: 1.5rem;
}

.preview_current_38b5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cool-bcad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool-bcad 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;
}

.cool-bcad li:last-child {
    border-bottom: none;
}

.cool-bcad li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.outline-8ba2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.notice-23c4 {
    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);
}

.notice-23c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_0990 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_86db {
    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);
}

.media_ba81 {
    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;
}

.pattern-9c94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification_b072 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-9074 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_402b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture_717d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table-cold-7c65 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.purple_b598 {
    display: flex;
    gap: 1rem;
}

.purple_b598 .caption-54ec {
    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;
}

.label_acec {
    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);
}

.notice_b80e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.clean_fb57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean_fb57 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;
}

.clean_fb57 li:last-child {
    border-bottom: none;
}

.clean_fb57 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.progress-mini-34bb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .progress-mini-34bb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-mini-34bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_d817 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tiny_d817:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_hard_daa1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.static-0b7c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.border_short_cd43 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.heading_d40c {
    font-size: 1rem;
}

.mini-5129 {
    padding: 1.5rem;
}

.badge-full-185c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.down-24e4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.down-24e4 .card_slow_6e87 {
    text-align: center;
}

.down-24e4 .search_red_2ffd {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.down-24e4 .slow-51ab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.secondary-dark-33ff {
    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);
}

.secondary-dark-33ff:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.secondary-9683 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-9683 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-4ad3 {
    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);
}

.fixed-4ad3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_8016 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-c8f4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_south_b332 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dynamic_bff2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge-8e0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_04bb {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-red-4a16 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-current-8a18 {
    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);
}

.overlay_basic_dbf2 {
    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;
}

.overlay_basic_dbf2.secondary_019d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.overlay_basic_dbf2.silver_7c76 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.overlay_basic_dbf2.smooth-6eb7 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.overlay_basic_dbf2.down-8079 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.overlay_basic_dbf2.banner-a2a5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tabs-narrow-3ffc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed-33c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-3819 {
    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);
}

.dark-6c66 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.content_full_eefb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content_full_eefb 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;
}

.content_full_eefb li:last-child {
    border-bottom: none;
}

.content_full_eefb li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.new_dec6 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new_dec6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new_dec6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny_bd0b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tiny_bd0b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny_bd0b.container-ed96 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tiny_bd0b.container-ed96 {
        grid-column: span 3;
    }
}

.backdrop-2363 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tiny_bd0b.container-ed96 .backdrop-2363 {
    background: rgba(6, 182, 212, 0.1);
}

.yellow_91bb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.paragraph-86f2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tiny_bd0b.container-ed96 .paragraph-86f2 {
    color: var(--info-color);
}

.carousel-dirty-9b41 {
    padding: 1.5rem;
    text-align: center;
}

.thick_84b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tiny_bd0b.container-ed96 .thick_84b0 {
    color: var(--info-color);
}

.accent-b8ca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bright-b3fd {
    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 */
.status_hot_e109 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_hot_e109 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-fresh-b475 {
    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);
}

.title-fresh-b475:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev-9c96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-selected-a0aa {
    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);
}

.module_cac0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_a31f {
    flex: 1;
}

.link_5f9c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_tall_0ec9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth_a0bd {
    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);
}

.notification-blue-64e8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.notice_silver_c273 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.down_17b8 {
    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);
}

.pressed_77c8 {
  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);
}

.pressed_77c8 .card_slow_6e87 {
    text-align: center;
}

.pressed_77c8 .shadow_7f58 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pressed_77c8 .search_red_2ffd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gradient-19a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_west_4d41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_7470 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item-hard-7ad2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_2042 {
    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);
}

.text_3001 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.logo-333c {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_black_187c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_black_187c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_black_187c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_pressed_3444 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.description_pressed_3444:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-171e {
    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);
}

.medium-3849 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary_purple_9cce {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cool_819b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cool_819b.tiny_a0bf {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.cool_819b.slider_fast_ebf0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.cool_819b.avatar-old-b0c6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.card-selected-f7ad {
    padding: 1.5rem;
    text-align: center;
}

.out_b51f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-purple-62a7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-purple-62a7 .stale-e872 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.notification_e800 {
    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);
}

.notification_e800:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.menu-fcea {
  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);
}

.menu_upper_b65b {
    text-align: center;
}

.menu_upper_b65b .shadow_7f58 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.menu_upper_b65b .search_red_2ffd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.dirty_7d7a { text-align: center; }
.alert-984f { text-align: left; }
.outline-0f5f { text-align: right; }

.photo_pro_989b { margin-bottom: 0; }
.info_lite_7daa { margin-bottom: 0.5rem; }
.summary-west-7923 { margin-bottom: 1rem; }
.chip_b52d { margin-bottom: 1.5rem; }
.feature_8f5d { margin-bottom: 2rem; }

.title-purple-c94d { margin-top: 0; }
.dropdown-static-56dd { margin-top: 0.5rem; }
.accent_east_e41f { margin-top: 1rem; }
.cool_8155 { margin-top: 1.5rem; }
.aside_plasma_687c { margin-top: 2rem; }

.fn-hidden-1721 { display: none; }
.fn-visible-1721 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .clean_fbfb {
        padding: 6rem 0 3rem;
    }
    
    .silver_56f4 {
        text-align: center;
    }
    
    .gold_2cba {
        text-align: center;
    }
    
    .hero_a9d2 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .pressed-1c34,
    .nav-pink-2bc8,
    .description_purple_0761,
    .footer-tiny-5f09 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .clean_fbfb {
        background: none;
    }
}

/* Providers Section */
.pressed_2060 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north_992c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_992c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north_992c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow-7946 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.yellow-7946:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic_c3b7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.frame-simple-3ab2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.icon_6d04 {
    list-style: none;
    padding: 0;
}

.icon_6d04 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.icon_6d04 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.video-9a79 {
    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);
}

.video-9a79 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.under_363f {
    padding: var(--section-padding);
}

.black_83f4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black_83f4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_7011 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip_7011:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gas_8dc0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.frame_up_2e32 {
    display: flex;
    flex-direction: column;
}

.advanced_45a5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dirty-4fed {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.current-c09e {
    color: var(--accent-color);
}

.simple-7867 {
    font-size: 1.25rem;
}

.prev-7f0e {
    margin-bottom: 1rem;
}

.prev-7f0e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.fast-c902 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status_3a73 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.card_slow_6e87 {
    text-align: center;
}

.shadow_7f58 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search_red_2ffd {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.paragraph-east-e40c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-bronze-d97c {
    margin: 2rem 0;
}

.tiny_e928 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tiny_e928 .panel-light-c27c {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar_2161 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.last-6442 {
    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;
}

.last-6442:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_5ff4 {
    font-size: 2rem;
}

.highlight_37f0 {
    display: flex;
    flex-direction: column;
}

.element_a64b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bronze-bcac {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.carousel-f88a {
    padding: var(--section-padding);
}

.complex-5967 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .complex-5967 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex-5967 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium_215b {
    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);
}

.medium_215b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium_215b .shadow_7f58 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.medium_215b .search_red_2ffd {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.medium_215b .copper_ea6e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.mini-be7e {
    margin-top: 4rem;
}

.blue_fbeb {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tabs-3250 {
    overflow-x: auto;
}

.background_4d82 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.background_4d82 thead {
    background: var(--accent-color);
}

.background_4d82 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.background_4d82 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.background_4d82 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.background_4d82 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.dropdown_active_9178 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-29aa {
    max-width: 900px;
    margin: 0 auto;
}

.focus-917a {
    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);
}

.focus-917a:hover {
    border-color: var(--accent-color);
}

.mask-0521 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.mask-0521 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.tooltip_fee2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.focus-917a.fn-active-1721 .tooltip_fee2 {
    transform: rotate(45deg);
}

.disabled-static-91e5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.focus-917a.fn-active-1721 .disabled-static-91e5 {
    max-height: 1000px;
}

.disabled-static-91e5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.notice_black_d98f {
    padding: var(--section-padding);
}

.background_9091 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.backdrop-275b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-9b2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-9b2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery_a4cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_red_b807 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.motion-c654 {
    font-size: 2rem;
}

.photo-active-3255 {
    color: var(--text-white);
    margin: 0;
}

.module-gas-83e1 {
    list-style: none;
    padding: 0;
}

.module-gas-83e1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module-gas-83e1 li:last-child {
    border-bottom: none;
}

.soft-e27e {
    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);
}

.soft-e27e p {
    color: var(--success-color);
    margin: 0;
}

.container_north_ba0e {
    margin-top: 3rem;
}

.notice_b80e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.grid-bcc6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-bcc6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar_80f6 {
    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);
}

.first_8ade {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.avatar_80f6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.hard_9a3e {
    padding: var(--section-padding);
}

.shadow_dirty_391b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_dirty_391b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_in_5f22 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_in_5f22:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.disabled-north-ccd3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.north-8bb7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pattern_f57f {
    flex: 1;
}

.summary_1e0e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.row_bright_c3cf {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.active-856f {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver_6951 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.silver_6951:last-child {
    border-bottom: none;
}

/* Comparison Section */
.media_584b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.paper_2bfc {
    padding: var(--section-padding);
}

.aside_f7ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.preview_5195 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_5195 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom_20ea {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-30d1, .hidden_2031, .pagination-3468 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.pagination-3468 {
    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 */
.copper-b7d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_0da8 {
    margin: 2rem 0;
}

.basic_52b7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_582d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.component_steel_4aaf {
    list-style: none;
    padding: 0;
}

.component_steel_4aaf 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;
}

.component_steel_4aaf li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.component_steel_4aaf li:last-child {
    border-bottom: none;
}

.gallery-b732 {
    text-align: center;
    margin-top: 2rem;
}

.card_short_ae13 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.card-south-2fa6 {
    padding: var(--section-padding);
}

.thumbnail-basic-8ad8 {
    margin: 2rem 0;
}

.label_b1a5 {
    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) {
    .label_b1a5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.label_b1a5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo-fast-a6cb {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.icon-b5ea {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.top-105b {
    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;
}

.cold_0767 {
    flex: 1;
}

.banner-4917 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.frame-8406 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fast_9a9b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.summary-4c98 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .summary-4c98 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter-dirty-a863 {
    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);
}

.filter-dirty-a863:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter-dirty-a863 .shadow_7f58 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-dirty-a863 .search_red_2ffd {
    color: var(--text-gray);
    font-size: 1rem;
}

.thick_18f0 {
    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);
}

.tiny_bc77 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.tiny_bc77 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.texture_new_70d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .texture_new_70d7 {
        grid-template-columns: 1fr 1fr;
    }
}

.frame_static_e2a5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-c3c1 {
    margin-bottom: 1.5rem;
}

.down-c3c1 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.down-c3c1 input,
.down-c3c1 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;
}

.down-c3c1 input:focus,
.down-c3c1 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.wood_3ba2 {
    width: 100%;
    margin-top: 1rem;
}

.light-d606 {
    display: flex;
    align-items: center;
}

.section_de2d {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.focused-7156 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.motion_f09b {
    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;
}

.prev-c851 {
    color: var(--text-gray);
}

.surface_8e2a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.shade_prev_45c9 {
    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);
}

.shade_prev_45c9 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.menu-c8fa {
    margin-top: 3rem;
}

.avatar-7dfb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.chip_right_5d7e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_pro_88c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.badge_prev_d71b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge_prev_d71b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.wrapper-top-3d23 {
    padding: var(--section-padding);
}

.prev-7597 {
    margin: 2rem 0;
}

.tertiary_c3a9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gallery-7be2 {
    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;
}

.gallery-7be2:hover, .gallery-7be2.fn-active-1721 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.column-4ea1 {
    display: none;
}

.column-4ea1.fn-active-1721 {
    display: block;
}

.pagination_358d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-8ad2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag_smooth_b083 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tag_smooth_b083 ul {
    list-style: none;
    padding: 0;
}

.tag_smooth_b083 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tag_smooth_b083 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active_selected_4e06 {
    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 */
.form_west_cc6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_cool_9285 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_b216 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.paragraph_1254 {
    color: var(--accent-color);
    margin: 0;
}

.heading_green_b6bf {
    display: flex;
    gap: 1.5rem;
}

.icon-middle-3618 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination-simple-8290 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.highlight_8218 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight_8218.glass_ed1a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.highlight_8218.purple-5dd9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.highlight_8218.overlay-full-cf9b {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.lower_4b05 {
    margin-top: 2rem;
}

.main_basic_6b69 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.grid_ea0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .grid_ea0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_narrow_32f8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.hard-d6ad {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.info_warm_e536 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.left-f657 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.hover_green_76d8 {
    padding: var(--section-padding);
}

.row_blue_12c0 {
    margin: 2rem 0;
}

.text-3041 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.center_1527 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.video_5a68 {
    list-style: none;
    padding: 0;
}

.video_5a68 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;
}

.video_5a68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.video_5a68 li:last-child {
    border-bottom: none;
}

.soft_7b75 {
    margin: 2rem 0;
}

.shade-pro-e47f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature_up_30d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature_up_30d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort_7280 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_solid_484c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-a484 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.mask-059a {
    margin-top: 2rem;
}

.modal-d27c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.modal_a972 {
    list-style: none;
    padding: 0;
}

.highlight-e48b {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.highlight-e48b a {
    color: var(--accent-color);
    text-decoration: none;
}

.highlight-e48b a:hover {
    text-decoration: underline;
}

.slow-c70b {
    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 */
.caption-dirty-b324 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-b96b {
    margin: 2rem 0;
}

.lite_d589 {
    margin-bottom: 3rem;
}

.lite_d589 .item_582d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message_white_bd03 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.new-3978 {
    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);
}

.new-3978:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.box-1de7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .box-1de7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-625a {
    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 */
.feature-copper-cf2c {
    padding: var(--section-padding);
}

.secondary-bottom-f47f {
    margin: 2rem 0;
}

.advanced-2662 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shade-bb33 {
    overflow-x: auto;
    margin: 2rem 0;
}

.message-bc11 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.paragraph-15cd {
    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;
}

.form-90e1 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.first-5a74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .first-5a74 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-copper-197e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-copper-197e .panel-light-c27c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.item-copper-197e .border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev-9c9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.right_1693 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-2067 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean-2067 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-dynamic-3a2c {
    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;
}

.tabs-dynamic-3a2c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.component_cdcc {
    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);
}

.paper_b741 {
    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;
}

.summary-dirty-66b4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dim_5d1e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.accordion-901c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.picture-hovered-820a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-0eff {
    color: var(--text-white);
    font-weight: 600;
}

.module-d189 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice-large-120a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-large-120a .caption-54ec {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hot_c067 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hot_c067 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-ceef {
    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);
}

.up-ceef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.up-ceef .shadow_7f58 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.up-ceef .search_red_2ffd {
    color: var(--text-gray);
    font-size: 1rem;
}

.accent_pressed_7861 {
    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);
}

.rough-2bfb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.rough-2bfb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.content_slow_f151 {
    margin: 2rem 0;
}

.status-9492 {
    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);
}

.status-9492:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.simple-4c0f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glass-ad08 {
    flex: 1;
}

.aside-8f41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_6096 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.menu_19ae {
    margin: 2rem 0;
}

.hard-c9cf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-c9cf .border_middle_aa46 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hard-c9cf .preview_current_38b5 {
    color: var(--text-gray);
    margin: 0;
}

.mask_inner_44da {
    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);
}

.mask_inner_44da .modal-large-8afb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.prev-9c9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.wood_88d8 {
    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;
}

.simple-d750 {
    flex: 1;
}

.title-dirty-6d15 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.detail-medium-edc2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.media_ba81 {
    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;
}

.pressed-f1ce {
    flex: 1;
}

.pattern-9c94 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.notification_b072 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.texture_717d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.table-cold-7c65 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.purple_b598 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.purple_b598 .caption-54ec {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.label_acec {
    margin-top: 2rem;
}

.label_acec .notice_b80e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.border-outer-5925 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_white_b338 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_white_b338 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_white_b338 .card_slow_6e87 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_a549 {
    margin: 2rem 0;
}

.grid_light_4a42 {
    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 */
.shadow-yellow-0ff4 {
    padding: var(--section-padding);
}

.popup_e158 {
    margin-top: 1rem;
}

.cool-bcad {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.cool-bcad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.cool-bcad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.mask_b9db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper_4da7 {
    margin: 2rem 0;
}

.first_6269 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.row_235c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-stone-ee06 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.frame-warm-8e31 {
    margin: 2rem 0;
}

.warm-fa9e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.warm-fa9e .item_582d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text-2599 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .text-2599 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active_fresh_3a74 {
    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);
}

.icon-4001 {
    color: var(--text-white);
    font-weight: 600;
}

.complex-7e1e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.medium_7e04 {
    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);
}

.medium_7e04 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tag-light-5936 {
    padding: var(--section-padding);
}

.status-narrow-df69 {
    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;
}

.status-narrow-df69:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.popup_849c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_849c .first_8ade {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_849c .alert_stale_d291 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.down-41c0 {
    flex: 1;
}

.footer_2332 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card_outer_fe80 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card_outer_fe80 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.card_outer_fe80 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.info_2aeb {
    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);
}

.info_2aeb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_2aeb strong {
    color: var(--warning-color);
}

/* Slots Section */
.mask-40d9 {
    padding: var(--section-padding);
}

.pagination_short_b78c {
    margin: 2rem 0;
}

/* Table Games Section */
.old-8684 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange_5279 {
    margin: 2rem 0;
}

.preview-inner-4b85 {
    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);
}

.preview-inner-4b85:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.preview-inner-4b85 .border_short_cd43 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview-inner-4b85 .badge-full-185c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tabs_plasma_17c6 {
    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);
}

.tabs_plasma_17c6 .modal-large-8afb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.bright-5b53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-bottom-9785 {
    margin: 2rem 0;
}

.tabs-slow-b496 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_1d8a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid_bbc0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal_86e2 {
    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);
}

.modal_86e2:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.modal_86e2.fn-active-1721 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-static-5258 {
    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);
}

.disabled_fd8c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled_fd8c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.tag-selected-052f {
    padding: var(--section-padding);
}

.tall-4643 {
    margin: 2rem 0;
}

.fresh-3cfb {
    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);
}

.fresh-3cfb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fresh-3cfb {
        flex-direction: column;
        align-items: flex-start;
    }
}

.easy-8ce0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.pressed_29c3 {
    flex: 1;
}

.focus-under-1ee0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag-914c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.frame_down_fafa {
    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;
}

.form_green_1a3e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tabs_wood_bf38 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hovered_b22c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.last-a6d5 {
    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;
}

.last-a6d5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.description_hot_8e89 {
    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);
}

.bright-e9d8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bright-e9d8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.red_a48a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_white_ce29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip_white_ce29 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip_white_ce29 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_1f10 {
    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;
}

.active_1f10:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.item-center-8f79 {
    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;
}

.green_0bf1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.detail-4ec3 {
    font-size: 2rem;
}

.notification_warm_fb48 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.gallery-ef2c {
    flex: 1;
}

.summary_selected_6941 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.row_1a7d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.row_last_9da7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stone-77ea {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.narrow-74a2 {
    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;
}

.button-over-ce18 {
    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;
}

.button-over-ce18:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hover-fb81 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-1ef0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop-5d7b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .backdrop-5d7b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-selected-8c03 {
    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);
}

.thumbnail_e8b3 {
    color: var(--text-white);
    font-weight: 600;
}

.selected_9640 {
    color: var(--accent-color);
    font-weight: 600;
}

.status-89f7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.status-89f7 strong {
    color: var(--accent-color);
}

/* Security Section */
.selected_5d39 {
    padding: var(--section-padding);
}

/* Benefits Section */
.tertiary_last_a520 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.title-cold-8f61 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.search-plasma-1430 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_4fd2 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.medium_80c3 {
    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) {
    .medium_80c3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.medium_80c3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.medium_80c3 .media_ba81 {
    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;
}

.medium_80c3 .pressed-f1ce {
    flex: 1;
}

.medium_80c3 .pattern-9c94 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.medium_80c3 .notification_b072 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.message-plasma-f86a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-plasma-f86a .link_5f9c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message-plasma-f86a .action-9d7a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-plasma-f86a .action-9d7a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.message-plasma-f86a .action-9d7a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.table_9e23 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.mini_a109 {
    padding: var(--section-padding);
}

.disabled_out_50d9 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .disabled_out_50d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_c2f6 {
    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);
}

.fresh_c2f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.fresh_c2f6 .primary-silver-c906 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh_c2f6 .focus-eec5 {
    flex: 1;
}

.fresh_c2f6 .video-6109 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fresh_c2f6 .chip-iron-9da8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section-medium-1b0c {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-medium-1b0c .warm_b340 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section-medium-1b0c .tabs_dirty_a4cf {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.section-medium-1b0c .tabs_dirty_a4cf 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);
}

.section-medium-1b0c .tabs_dirty_a4cf li:last-child {
    border-bottom: none;
}

.section-medium-1b0c .tabs_dirty_a4cf 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;
}

.section-medium-1b0c .tabs_dirty_a4cf li strong {
    color: var(--text-white);
}

.action_5dbe {
    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);
}

.action_5dbe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.action_5dbe strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.backdrop_d259 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.center-e924 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .center-e924 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold-804e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold-804e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.carousel-5664 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower-4901 {
    font-size: 2rem;
}

.silver-facf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mini_9ed6 {
    flex: 1;
}

.purple_8076 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purple_8076 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.purple_8076 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.main_in_4acb {
    margin-top: 3rem;
}

.text-3041 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.center_1527 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_5a68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_5a68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.video_5a68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.video_5a68 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.tertiary_db82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-solid-0144 {
    margin: 2rem 0;
}

.smooth_35e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.smooth_35e0 .item_582d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-cool-122c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort-cool-122c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph_red_878f {
    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);
}

.paragraph_red_878f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.texture_6669 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero_b8c6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.current-8ca7 {
    padding: var(--section-padding);
}

.hard-d581 {
    margin: 2rem 0;
}

.table_88f7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .table_88f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_88f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_f8b7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient_f8b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card-narrow-5665 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.accordion-fixed-cd9f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.active_large_fbc4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.active_large_fbc4.hover_focused_0ae9 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.glass-db58 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.text-4e8e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.orange_376d {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.down_2efc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container_92f1 {
    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);
}

.container_92f1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container_92f1 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.active_3eb0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-94fd {
    margin: 2rem 0;
}

.message_plasma_3ffe {
    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) {
    .message_plasma_3ffe {
        flex-direction: column;
        gap: 1rem;
    }
}

.message_plasma_3ffe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_plasma_3ffe::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);
}

.dynamic_7d2c {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.smooth_7530 {
    flex: 1;
}

.background_dirty_4034 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dark_1f1d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark_1f1d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.box_d6d0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black-bac1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white-53a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white-53a9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-127a {
    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);
}

.center-be91 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.border-cool-539b {
    flex: 1;
}

.title_db9c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.video_82ae {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pagination_349b {
    margin-top: 2rem;
    text-align: center;
}

.stale-3d54 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stale-3d54 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.secondary-9683 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-9683 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-4ad3 {
    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);
}

.fixed-4ad3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fixed-4ad3 .media-210d {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-4ad3 .center_24d7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.fixed-4ad3 .middle_fe69 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.fixed-4ad3 .component_liquid_bbb7 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.shadow-white-f8d5 {
    padding: var(--section-padding);
}

.hidden-c8f4 .search-copper-2415 {
    flex: 1;
}

/* Promo Calendar Section */
.simple-55fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_silver_93b7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_silver_93b7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_east_959d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-static-1373 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.widget_south_f9ed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image_active_75de {
    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);
}

.plasma-4634 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus_paper_3227 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.hover_daf7 {
    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);
}

.hover_daf7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hover_daf7 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.frame-liquid-a6aa {
    padding: var(--section-padding);
}

.hard-f6fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hard-f6fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-mini-0663 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-f8ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.summary_huge_88ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary_huge_88ad li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-last-cd27 {
    margin-top: 3rem;
}

.tag-last-cd27 .text-3041 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tag-last-cd27 .center_1527 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag-last-cd27 .video_5a68 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tag-last-cd27 .video_5a68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tag-last-cd27 .video_5a68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tag-last-cd27 .video_5a68 li strong {
    color: var(--warning-color);
}

.dropdown_08f6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown_08f6 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.shade_next_aafa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-90bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-90bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-d141 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-d141 .item_582d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.sidebar-right-2c1b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled-0186 {
    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);
}

.disabled-0186:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block-c730 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-tiny-da69 {
    flex: 1;
}

.info_bc0f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.notification-4b99 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.logo_ced7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.over-8b15 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paper_9862 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .paper_9862 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_6042 {
    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);
}

.header_6042:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery-687f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_e2f6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tiny_bc77 {
    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);
}

.tooltip_north_994d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tooltip_north_994d strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hidden_1a27 { 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; }
.dropdown_smooth_dc86, .heading_hot_4d72 { max-width:100%; height:auto; }

.aside_5ad4, .form_iron_109d, .top-06ca { white-space:normal; }

.silver_56f4,
.gold_2cba,
.status_hot_e109,
.secondary-9683,
.menu_19ae,
.pattern_black_187c {
  flex-wrap:wrap;
}

[class*="grid"],
.paper_9862,
.table_88f7,
.button-aacc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.clean_fbfb img,
.gold_2cba img,
.pink-76cd img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.highlight-outer-4432, .layout_top_30b1,
.badge-3168, .alert_efd6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tabs-3250 { width:100%; overflow-x:auto; }
.tabs-3250 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.north_992c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .north_992c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.yellow-7946 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.complex-5967,
.media_bronze_1edc,
.dark_bab0,
.full-6378,
.summary-4c98,
.paper_9862,
.table_88f7,
.button-aacc,
.menu-fcea,
.tall-4643,
.north_992c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .complex-5967,
  .media_bronze_1edc,
  .dark_bab0,
  .full-6378,
  .summary-4c98,
  .paper_9862,
  .table_88f7,
  .button-aacc,
  .menu-fcea,
  .tall-4643,
  .north_992c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.medium_215b,
.filter-dirty-a863,
.header_6042,
.carousel_26f5,
.gradient_f8b7,
.menu_upper_b65b,
.fresh-3cfb,
.yellow-7946 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.warm_a52f,
.simple-e4b4,
.nav_ccac {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.warm_a52f > *,
.simple-e4b4 > *,
.nav_ccac > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 9248 */
.ghost-box-f3 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
