/* {$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;
}

.dark_cdc0 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.link_bronze_f9be {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .link_bronze_f9be {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .link_bronze_f9be {
        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 */
.gas_0abe {
    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);
}

.wide-efa3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .wide-efa3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .short_0362 {
        grid-column: 1;
    }
    
    .logo-6dbb {
        grid-column: 2;
    }
    
    .tall-3260 {
        grid-column: 3;
    }
}

.short_0362 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.short_0362:hover img {
    transform: scale(1.05);
}

/* Navigation */
.detail-aea9 {
    display: none;
}

@media (min-width: 1024px) {
    .detail-aea9 {
        display: block;
    }
}

/* Grouped Navigation */
.wood-3802 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.description_9a0e {
    position: relative;
}

.content-9fed {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.description_9a0e .progress-9dc6 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.progress-9dc6 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.avatar-south-b73d {
    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;
}

.avatar-south-b73d:hover,
.avatar-south-b73d.fn-active-5d69 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.top_5ca3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .top_5ca3 {
        display: flex;
    }
}

/* Mobile Register Button */
.logo-6dbb {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .logo-6dbb {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tiny_204b {
    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;
}

.tiny_204b::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 */
.tall-3260 {
    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) {
    .tall-3260 {
        display: none;
    }
}

.tall-3260 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tall-3260.fn-active-5d69 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tall-3260.fn-active-5d69 span:nth-child(2) {
    opacity: 0;
}

.tall-3260.fn-active-5d69 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.paper-f22c {
    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;
}

.paper-f22c.fn-active-5d69 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.filter_c26a {
    overflow: hidden;
}

.accordion_orange_85c0 {
    list-style: none;
    padding: 0.75rem 0;
}

.filter-mini-1da4 {
    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;
}

.filter-mini-1da4:hover,
.filter-mini-1da4.fn-active-5d69 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.filter-mini-1da4.bright-8c73 {
    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;
}

.filter-mini-1da4.bright-8c73::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 */
.overlay-old-bd8d {
    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;
}

.content_5cec {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.content_5cec:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.modal-copper-6c92 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.modal-copper-6c92:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tertiary_hovered_15d9 {
    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;
}

.tertiary_hovered_15d9:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.slider_93c3 {
    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;
}

.gallery_4497 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.gallery_4497:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.backdrop-bf30 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.backdrop-bf30:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pattern-tiny-3c43 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pattern-tiny-3c43: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);
}

.notification_gold_6597 {
    font-size: 1em;
    font-weight: 700;
}

.outer-4719 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.card_hard_2ef3 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.card_hard_2ef3::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;
}

.video_inner_34f5 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .video_inner_34f5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.input-gold-6f10 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.modal_fdc3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.dropdown_1f9b {
    margin-bottom: 2rem;
}

.texture_stale_edad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .texture_stale_edad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-under-3f75 {
    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);
}

.accent_lite_3027 {
    font-size: 1.5rem;
}

.large_992d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.gallery-hard-ba6e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget_south_85b2 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.widget_south_85b2:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.photo-5d00 {
    text-align: center;
    margin-bottom: 3rem;
}

.notice_2e77 {
    margin-bottom: 1rem;
}

.tag_wood_ae41 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.label_f10a {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .label_f10a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .label_f10a.outline_cool_0532 {
        direction: rtl;
    }
    
    .label_f10a.outline_cool_0532 > * {
        direction: ltr;
    }
}

.wood_06cd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.wood_06cd:first-child {
    margin-top: 0;
}

.chip-42f5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.logo_7915 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.logo_7915:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.filter-right-49f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-right-49f9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green_0c4b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_green_4837 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient_342e {
    list-style: none;
}

.gradient_342e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient_342e li:last-child {
    border-bottom: none;
}

/* Games Features */
.inner_88f3 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.status_tall_a4d5 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.block-hard-6d91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.cold-37f5 {
    margin: 2rem 0;
}

.notice_d027 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.column-over-19f3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.white_96a8 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.widget_rough_6f14 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.badge-tall-169c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-tall-169c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-1075 {
    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);
}

.smooth-1075:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.out_5a01 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.module_554e {
    font-size: 1.5rem;
}

.alert-wide-d3f5 {
    color: var(--accent-color);
    margin: 0;
}

.pagination_hard_c37c {
    list-style: none;
}

.pagination_hard_c37c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pagination_hard_c37c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.notice-1697 {
    margin: 2rem 0;
}

.inner-87d5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dark-2dd8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dark-2dd8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_0da2 {
    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);
}

.right_6aef {
    font-size: 1.25rem;
}

.paragraph_yellow_f8d3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.active_574a,
.secondary-green-f5c1 {
    text-align: center;
    margin: 2rem 0;
}

.filter_1028,
.gallery-focused-815c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.bottom_1d93 {
    margin: 2rem 0;
    text-align: center;
}

.block_f7e0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.block_f7e0::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;
}

.wide_b6f7 {
    position: relative;
    z-index: 1;
}

.thumbnail_bottom_91cb {
    margin-bottom: 1rem;
}

.breadcrumb_dim_4447 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.huge_0dbd {
    margin-bottom: 3rem;
}

.background-bottom-bd0d {
    margin-top: 3rem;
}

.hero-c94c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-c94c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-c94c .picture-under-3f75 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown-north-cb30 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_8286 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.row_full_02a4 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.huge_61ad {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .huge_61ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .huge_61ad {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.lite_5bac {
    margin-bottom: 1rem;
}

.frame_74fe img {
    margin-bottom: 1rem;
}

.tabs_fixed_4639 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_790d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.popup_0d00 {
    list-style: none;
}

.popup_0d00 li {
    margin-bottom: 0.5rem;
}

.popup_0d00 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.popup_0d00 a:hover {
    color: var(--accent-color);
}

.picture-b3ac {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.outline-hard-e493 {
    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);
}

.outline-hard-e493:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.green_e91b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.green_e91b p {
    margin-bottom: 0.25rem;
}

.notice-inner-11f9 {
    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) {
    .notice-inner-11f9 {
        flex-direction: row;
    }
}

.right-84e3 {
    text-align: center;
}

@media (min-width: 768px) {
    .right-84e3 {
        text-align: left;
    }
}

.right-84e3 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.row-417a {
    font-size: 0.75rem !important;
}

.white-23e5 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.alert-e63a {
    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);
    }
}

.tag_d72f {
    animation: fadeInUp 0.6s ease-out;
}

.panel-730e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.rough_2cae {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_2cae {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.overlay_bbbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_bbbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_0e01 {
    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);
}

.pressed_0e01 .block-hard-6d91 {
    font-size: 1.25rem;
}

.pressed_0e01 .outline_eb25 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.row_ed05 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_ed05 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title-d511 {
    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);
}

.title-d511:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_pink_d488 {
    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);
}

.tall_e161 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focused_d0bd {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-tiny-43d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_240b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_240b .solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_240b .aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_out_382f {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_fresh_4c4a {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.info_fresh_4c4a img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info_fresh_4c4a img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.secondary_dynamic_578e {
    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);
}

.north_b442 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accent-pink-62ff {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accent-pink-62ff label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent-pink-62ff 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);
}

.accent-pink-62ff input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.accent-pink-62ff input::placeholder {
    color: var(--text-muted);
}

.solid_a39a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.small_848f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.small_848f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.row-d0c9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.row-d0c9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.dark-2dd8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark-2dd8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_0da2 {
    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_0da2 .right_6aef {
    font-size: 1.25rem;
}

.highlight_0da2 .paragraph_yellow_f8d3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.thumbnail-81f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-a0ba {
    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);
}

.overlay-a0ba .block-hard-6d91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-a0ba .solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-a0ba .aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-out-8335 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_glass_6637 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_glass_6637 .input_3097 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_glass_6637 .shadow_hard_5788 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-a89f {
    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);
}

.backdrop-4135 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .backdrop-4135 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_351f {
    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);
}

.summary_351f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_outer_5044 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.focused-7aca {
    flex: 1;
}

.hero_fast_71d7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lite-5be3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.easy-5b55 {
    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);
}

.easy-5b55:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.button_adad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_adad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-fb2d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message-fb2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel-last-c897 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-clean-b521 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button_aba0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.video_left_cb3d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box_thick_1429 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column-dim-dcb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_motion_c3ed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination_motion_c3ed .gallery_thick_bd86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination_motion_c3ed .component-feb3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-11c2 {
    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);
}

.item_soft_0ad6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-action-2e45 {
    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);
}

.thumbnail-action-2e45 .block-hard-6d91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-action-2e45 .solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail-action-2e45 .aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.short-cc76 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-cc76 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_7fa3 {
    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);
}

.right_7fa3:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.focus-cc78 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-cc78 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-slow-1c88 {
    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);
}

.tooltip-slow-1c88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_liquid_ca16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_bright_987f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column-over-19f3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.red-b27b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.disabled-b47c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_2b98 {
    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);
}

.easy_2b98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-blue-a4a4 {
    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);
}

.main-under-b3a5 {
    flex: 1;
}

.middle-cfe3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.easy-931a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.container-8ac5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_thick_2059 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_4424 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_4424 .input_3097 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_4424 .shadow_hard_5788 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-green-f5c1 {
    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);
}

.shade-f52e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-f52e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.section-e774 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-e774 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-bf19 {
    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);
}

.brown-bf19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-9c14 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic_a71c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thumbnail-48a8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.active_d7bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over-c544 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid-fadd {
    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);
}

.white_50b2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_lower_b458 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_4570 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_soft_0ad6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-action-2e45 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.thumbnail-action-2e45 .solid-f6eb {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thumbnail-action-2e45 .aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-7ffe {
    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);
}

.menu-last-6597 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-last-6597 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-last-6597 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_3424 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent_3424:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper-5126 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stone-c9d9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient_485c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bright-94cc {
    padding: 1.5rem;
}

.under_4da3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar-fcca {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-fcca 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;
}

.sidebar-fcca li:last-child {
    border-bottom: none;
}

.sidebar-fcca li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.feature_e760 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_e760 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_0804 {
    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);
}

.hard_0804:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_620f {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_focused_b79f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.red-1602 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.grid_hot_90e4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lower_5785 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-smooth-3b73 {
    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);
}

.widget-bc26 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-plasma-201a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert_1384 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-tiny-b905 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline_huge_02d9 {
    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);
}

.avatar-fast-5076 {
    text-align: center;
}

.column-4bda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_medium_b40c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern_aa50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-a97f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-a97f .solid-f6eb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-a97f .aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.north-ddaf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .north-ddaf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north-ddaf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-0360 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outline-0360:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow-6472 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.summary_yellow_6270 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.solid-f6eb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.row-c7a4 {
    padding: 1.5rem;
}

.aside-1ac0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.first-40d4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.first-40d4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.first-40d4 li:last-child {
    border-bottom: none;
}

.first-40d4 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.dropdown_active_2672 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.copper-9621 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.copper-9621:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-185a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-center-a34d {
    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);
}

.surface_pink_d488 {
    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;
}

.tall_e161 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focused_d0bd {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_82cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-a3d0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline_7d07 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header_4b9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.status_new_e4ba {
    display: flex;
    gap: 1rem;
}

.status_new_e4ba .overlay-over-62d4 {
    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;
}

.bottom_c08e {
    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);
}

.west-1d30 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion-85a4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion-85a4 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;
}

.motion-85a4 li:last-child {
    border-bottom: none;
}

.motion-85a4 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.action_b23d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .action_b23d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .action_b23d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section_8baf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.section_8baf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-inner-ead8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel_under_4185 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gallery_thick_bd86 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.light_9d05 {
    font-size: 1rem;
}

.badge-in-439f {
    padding: 1.5rem;
}

.component-feb3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert_3c35 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.alert_3c35 .avatar-fast-5076 {
    text-align: center;
}

.alert_3c35 .info_medium_b40c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.alert_3c35 .red-b220 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.secondary-393e {
    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-393e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.progress-static-73f5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-static-73f5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_cef2 {
    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);
}

.yellow_cef2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-small-2875 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container-0fd2 {
    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);
}

.photo_bright_1756 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_3722 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma-c6b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_9f37 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.surface_06ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-cool-55aa {
    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);
}

.summary-tiny-22d6 {
    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;
}

.summary-tiny-22d6.info_current_49b6 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.summary-tiny-22d6.hidden-in-cfc4 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.summary-tiny-22d6.label_old_52dd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.summary-tiny-22d6.module_4f22 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.summary-tiny-22d6.message-7879 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.icon_advanced_11bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid_38b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-3f0d {
    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);
}

.status-right-2872 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline-out-8335 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline-out-8335 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.outline-out-8335 li:last-child {
    border-bottom: none;
}

.outline-out-8335 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.article_7612 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article_7612 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article_7612 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first-8a2b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.first-8a2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first-8a2b.smooth_f748 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .first-8a2b.smooth_f748 {
        grid-column: span 3;
    }
}

.dark_cb77 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.first-8a2b.smooth_f748 .dark_cb77 {
    background: rgba(6, 182, 212, 0.1);
}

.sidebar-1f6b {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.solid_bdf1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.first-8a2b.smooth_f748 .solid_bdf1 {
    color: var(--info-color);
}

.popup_pink_8112 {
    padding: 1.5rem;
    text-align: center;
}

.black-340b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.first-8a2b.smooth_f748 .black-340b {
    color: var(--info-color);
}

.picture_516d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.image_medium_2903 {
    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 */
.lite-516b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-516b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_last_55c8 {
    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);
}

.box_last_55c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-bbd3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-a0ba {
    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);
}

.right_6aef {
    font-size: 2rem;
    flex-shrink: 0;
}

.hot-8db5 {
    flex: 1;
}

.inner-87d5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered_9885 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_85ba {
    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);
}

.banner_a7ac {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.east-a4e0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.alert-e63a {
    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);
}

.list_first_5782 {
  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);
}

.list_first_5782 .avatar-fast-5076 {
    text-align: center;
}

.list_first_5782 .column-4bda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.list_first_5782 .info_medium_b40c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thick-94ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_light_c9c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-hard-6766 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_5ff5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_plasma_4ec2 {
    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);
}

.glass-13e1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer_cc0a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_1cae {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag_1cae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag_1cae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-fixed-ed1e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-fixed-ed1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-smooth-747b {
    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);
}

.container-wood-0eb2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange-ec4f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gold_b68a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold_b68a.section-fresh-9999 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gold_b68a.notification_77b1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.gold_b68a.hidden-next-4246 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.sort-0a28 {
    padding: 1.5rem;
    text-align: center;
}

.sort_small_4f84 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.box-cd0b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.box-cd0b .alert_d048 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.bottom_f4bd {
    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);
}

.bottom_f4bd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.inner-42bd {
  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);
}

.liquid_7f0c {
    text-align: center;
}

.liquid_7f0c .column-4bda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.liquid_7f0c .info_medium_b40c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.picture_eab9 { text-align: center; }
.slider_4f5e { text-align: left; }
.down_9381 { text-align: right; }

.status-under-7109 { margin-bottom: 0; }
.tertiary-center-b1cb { margin-bottom: 0.5rem; }
.tooltip_clean_d450 { margin-bottom: 1rem; }
.tiny_45c6 { margin-bottom: 1.5rem; }
.dark_8414 { margin-bottom: 2rem; }

.modal_upper_4be1 { margin-top: 0; }
.section_blue_5eb7 { margin-top: 0.5rem; }
.text_81f1 { margin-top: 1rem; }
.highlight-basic-1e21 { margin-top: 1.5rem; }
.soft-8f9c { margin-top: 2rem; }

.fn-hidden-5d69 { display: none; }
.fn-visible-5d69 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .card_hard_2ef3 {
        padding: 6rem 0 3rem;
    }
    
    .video_inner_34f5 {
        text-align: center;
    }
    
    .label_f10a {
        text-align: center;
    }
    
    .texture_stale_edad {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .gas_0abe,
    .paper-f22c,
    .block_f7e0,
    .row_full_02a4 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card_hard_2ef3 {
        background: none;
    }
}

/* Providers Section */
.message-in-562a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_1f25 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_1f25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old_1f25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-3865 {
    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-3865:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery-over-c93b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lower-bc1f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header-ae90 {
    list-style: none;
    padding: 0;
}

.header-ae90 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.header-ae90 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hidden_small_f87c {
    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);
}

.hidden_small_f87c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.banner_86e2 {
    padding: var(--section-padding);
}

.thick_6342 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_6342 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_hard_84f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component_hard_84f1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.surface-west-77c5 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-under-c986 {
    display: flex;
    flex-direction: column;
}

.search_06c7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.progress-8296 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form_outer_dbdd {
    color: var(--accent-color);
}

.wrapper_left_9420 {
    font-size: 1.25rem;
}

.bottom-a8d1 {
    margin-bottom: 1rem;
}

.bottom-a8d1 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.prev_a2d8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sort-0c8b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.avatar-fast-5076 {
    text-align: center;
}

.column-4bda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_medium_b40c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.active_d83f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_purple_00a8 {
    margin: 2rem 0;
}

.text_narrow_edc3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.text_narrow_edc3 .block-hard-6d91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture-3171 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.easy-2733 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.easy-2733:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row_lower_67e9 {
    font-size: 2rem;
}

.section-c0e4 {
    display: flex;
    flex-direction: column;
}

.element_ebfc {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.grid_prev_3550 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.progress_b765 {
    padding: var(--section-padding);
}

.nav-huge-4018 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav-huge-4018 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-huge-4018 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-short-0aa6 {
    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);
}

.heading-short-0aa6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading-short-0aa6 .column-4bda {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.heading-short-0aa6 .info_medium_b40c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.heading-short-0aa6 .solid-7534 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.hover_soft_6995 {
    margin-top: 4rem;
}

.element_864c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.modal-slow-7afc {
    overflow-x: auto;
}

.box_b30b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.box_b30b thead {
    background: var(--accent-color);
}

.box_b30b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.box_b30b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.box_b30b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.box_b30b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.sidebar_c4df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-large-4ced {
    max-width: 900px;
    margin: 0 auto;
}

.hover-2d37 {
    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);
}

.hover-2d37:hover {
    border-color: var(--accent-color);
}

.bottom_048f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.bottom_048f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.detail_f8da {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hover-2d37.fn-active-5d69 .detail_f8da {
    transform: rotate(45deg);
}

.shade-lower-5061 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hover-2d37.fn-active-5d69 .shade-lower-5061 {
    max-height: 1000px;
}

.shade-lower-5061 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.slow-c1a8 {
    padding: var(--section-padding);
}

.info_fresh_4c4a {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.button-fast-ebf7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_simple_e82b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_simple_e82b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gold-1d72 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-6160 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.border-7ca3 {
    font-size: 2rem;
}

.column-easy-9a24 {
    color: var(--text-white);
    margin: 0;
}

.section_plasma_4741 {
    list-style: none;
    padding: 0;
}

.section_plasma_4741 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section_plasma_4741 li:last-child {
    border-bottom: none;
}

.accent_yellow_9742 {
    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);
}

.accent_yellow_9742 p {
    color: var(--success-color);
    margin: 0;
}

.aside_85fa {
    margin-top: 3rem;
}

.west-1d30 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.accordion_37a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion_37a0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tiny-6e4c {
    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);
}

.modal-56a3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tiny-6e4c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.detail_small_c36b {
    padding: var(--section-padding);
}

.paragraph-2a91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-2a91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_iron_fbb3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph_iron_fbb3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.purple-d9a1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notice_ba7b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.basic-42c4 {
    flex: 1;
}

.focused-dea1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.main-d3be {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.header-solid-1455 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-6ce4 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.basic-6ce4:last-child {
    border-bottom: none;
}

/* Comparison Section */
.header-9cf2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.fixed_b70f {
    padding: var(--section-padding);
}

.summary-e5bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.mask-ccac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-ccac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_8c87 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_hard_be32, .content-857e, .photo_d40d {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.photo_d40d {
    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 */
.form-d31e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under_05d8 {
    margin: 2rem 0;
}

.out_7a3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-copper-9d85 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.detail-7ee5 {
    list-style: none;
    padding: 0;
}

.detail-7ee5 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;
}

.detail-7ee5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.detail-7ee5 li:last-child {
    border-bottom: none;
}

.footer_2785 {
    text-align: center;
    margin-top: 2rem;
}

.slider-c094 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.new_c3f3 {
    padding: var(--section-padding);
}

.border_tiny_cfb9 {
    margin: 2rem 0;
}

.current_4898 {
    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) {
    .current_4898 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.current_4898:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.lower_3a14 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.heading_d197 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.in_96e2 {
    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;
}

.item_pro_9358 {
    flex: 1;
}

.selected-ce32 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.widget-eef1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.module_7e36 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.north-6244 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .north-6244 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.current-de94 {
    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);
}

.current-de94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.current-de94 .column-4bda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current-de94 .info_medium_b40c {
    color: var(--text-gray);
    font-size: 1rem;
}

.bronze-dec8 {
    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);
}

.section-east-44ea {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.section-east-44ea strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.pagination-a29e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .pagination-a29e {
        grid-template-columns: 1fr 1fr;
    }
}

.heading-slow-451a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_new_1e7a {
    margin-bottom: 1.5rem;
}

.tag_new_1e7a label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tag_new_1e7a input,
.tag_new_1e7a 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;
}

.tag_new_1e7a input:focus,
.tag_new_1e7a select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.layout_bfca {
    width: 100%;
    margin-top: 1rem;
}

.brown_9183 {
    display: flex;
    align-items: center;
}

.accent_d559 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-a58c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.basic_ae39 {
    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;
}

.notification_solid_f467 {
    color: var(--text-gray);
}

.status_93d1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.black-4266 {
    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);
}

.black-4266 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.iron_d0b9 {
    margin-top: 3rem;
}

.upper_1e79 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.texture_3f12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-617f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.element_orange_4a87 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element_orange_4a87:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.summary_small_dc8d {
    padding: var(--section-padding);
}

.module_7f4a {
    margin: 2rem 0;
}

.upper_2e6e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.status_bottom_7e63 {
    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;
}

.status_bottom_7e63:hover, .status_bottom_7e63.fn-active-5d69 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.old-7fca {
    display: none;
}

.old-7fca.fn-active-5d69 {
    display: block;
}

.picture_296d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-b4be {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cold_876c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.cold_876c ul {
    list-style: none;
    padding: 0;
}

.cold_876c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.cold_876c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.description-prev-cbf9 {
    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 */
.glass_7b42 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-9f09 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up-5d1b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.active-d703 {
    color: var(--accent-color);
    margin: 0;
}

.footer-active-e689 {
    display: flex;
    gap: 1.5rem;
}

.black-06ed {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.title_purple_7313 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.grid_705c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid_705c.overlay_7057 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.grid_705c.block-4a22 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.grid_705c.layout_f7ab {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.content-north-a468 {
    margin-top: 2rem;
}

.highlight_mini_91da {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dirty_d8e2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .dirty_d8e2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-west-9afb {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.grid-narrow-38ab {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.component-9561 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-ed4a {
    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 */
.tall-3504 {
    padding: var(--section-padding);
}

.new_e550 {
    margin: 2rem 0;
}

.badge_2941 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.focused-0bc3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.header-white-9648 {
    list-style: none;
    padding: 0;
}

.header-white-9648 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;
}

.header-white-9648 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.header-white-9648 li:last-child {
    border-bottom: none;
}

.alert-cool-a1c0 {
    margin: 2rem 0;
}

.active-f0fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gallery_complex_e554 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_complex_e554 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button_last_c18c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_7180 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading_1316 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.caption_stone_bf54 {
    margin-top: 2rem;
}

.hero_fast_71d7 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tabs_light_03df {
    list-style: none;
    padding: 0;
}

.layout-outer-57e7 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.layout-outer-57e7 a {
    color: var(--accent-color);
    text-decoration: none;
}

.layout-outer-57e7 a:hover {
    text-decoration: underline;
}

.tooltip_fast_1e95 {
    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 */
.tabs_da2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out-b2bb {
    margin: 2rem 0;
}

.primary-short-bbca {
    margin-bottom: 3rem;
}

.primary-short-bbca .disabled-copper-9d85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.article_over_a868 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wrapper-focused-1d7c {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.wrapper-focused-1d7c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gallery_center_64b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .gallery_center_64b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-1f57 {
    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 */
.notification-bright-267a {
    padding: var(--section-padding);
}

.layout-under-6661 {
    margin: 2rem 0;
}

.image_action_81d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.iron_5803 {
    overflow-x: auto;
    margin: 2rem 0;
}

.shadow-middle-647a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.clean-8acf {
    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;
}

.button-cold-33f9 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.gallery-6d4e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gallery-6d4e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-next-9f43 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-next-9f43 .block-hard-6d91 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.grid-next-9f43 .solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-b90d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.advanced_0a67 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-bbfc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-bbfc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-up-67df {
    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;
}

.surface-up-67df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.frame_7278 {
    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);
}

.box-easy-1cf5 {
    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;
}

.small-03b8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_bbaf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.light-f86b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.modal-out-e1c7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copper-7ceb {
    color: var(--text-white);
    font-weight: 600;
}

.text-2681 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.column_purple_6b36 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column_purple_6b36 .overlay-over-62d4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tag-a7e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag-a7e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-aa5b {
    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);
}

.search-aa5b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.search-aa5b .column-4bda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-aa5b .info_medium_b40c {
    color: var(--text-gray);
    font-size: 1rem;
}

.hovered_1d96 {
    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);
}

.feature-north-3bcb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature-north-3bcb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.over-c544 {
    margin: 2rem 0;
}

.liquid-fadd {
    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);
}

.liquid-fadd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.white_50b2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tiny-38a2 {
    flex: 1;
}

.hidden_lower_b458 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_4570 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.item_soft_0ad6 {
    margin: 2rem 0;
}

.thumbnail-action-2e45 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-action-2e45 .solid-f6eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.thumbnail-action-2e45 .aside-1ac0 {
    color: var(--text-gray);
    margin: 0;
}

.layout-7ffe {
    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);
}

.layout-7ffe .filter_1028 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.info-b90d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.list-blue-a4a4 {
    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;
}

.main-under-b3a5 {
    flex: 1;
}

.easy-931a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.container-8ac5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.surface_pink_d488 {
    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;
}

.article-clean-1a50 {
    flex: 1;
}

.tall_e161 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.focused_d0bd {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.outline_7d07 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.header_4b9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.status_new_e4ba {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.status_new_e4ba .overlay-over-62d4 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bottom_c08e {
    margin-top: 2rem;
}

.bottom_c08e .west-1d30 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.action-4229 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_huge_02d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outline_huge_02d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline_huge_02d9 .avatar-fast-5076 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_aa50 {
    margin: 2rem 0;
}

.active-a97f {
    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 */
.in-4210 {
    padding: var(--section-padding);
}

.row-c7a4 {
    margin-top: 1rem;
}

.first-40d4 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.first-40d4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.first-40d4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.focus-8c0a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_81ed {
    margin: 2rem 0;
}

.element-dark-21b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.selected_186d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fast_d35c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.filter-brown-abaa {
    margin: 2rem 0;
}

.component_441b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.component_441b .disabled-copper-9d85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip_bcce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip_bcce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paper_7c6f {
    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);
}

.focus_8209 {
    color: var(--text-white);
    font-weight: 600;
}

.bright_6098 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.feature_bottom_6183 {
    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);
}

.feature_bottom_6183 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.box_2df7 {
    padding: var(--section-padding);
}

.slider_c4c7 {
    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;
}

.slider_c4c7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table-upper-f55a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-upper-f55a .modal-56a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-upper-f55a .text_9532 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.new_3c20 {
    flex: 1;
}

.border_gas_9409 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.input_narrow_bdc9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input_narrow_bdc9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.input_narrow_bdc9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tooltip_f04f {
    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);
}

.tooltip_f04f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tooltip_f04f strong {
    color: var(--warning-color);
}

/* Slots Section */
.copper-96ad {
    padding: var(--section-padding);
}

.box_thick_1429 {
    margin: 2rem 0;
}

/* Table Games Section */
.bottom-3e02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-dim-dcb6 {
    margin: 2rem 0;
}

.pagination_motion_c3ed {
    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);
}

.pagination_motion_c3ed:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pagination_motion_c3ed .gallery_thick_bd86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination_motion_c3ed .component-feb3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.in-11c2 {
    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);
}

.in-11c2 .filter_1028 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.box_thick_9616 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_2cd6 {
    margin: 2rem 0;
}

.filter-866d {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-2461 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.over_aede {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover_fd84 {
    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);
}

.hover_fd84:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover_fd84.fn-active-5d69 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-down-0993 {
    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);
}

.easy-a25f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.easy-a25f strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.down_1a7f {
    padding: var(--section-padding);
}

.alert-basic-c7a8 {
    margin: 2rem 0;
}

.banner_out_ce48 {
    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);
}

.banner_out_ce48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .banner_out_ce48 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.stale-4eb4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.link_17d6 {
    flex: 1;
}

.header_over_791b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-cold-314c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary-new-af7f {
    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;
}

.tabs_6e9b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.button-white-7f78 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.image-d3f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-easy-c6ed {
    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;
}

.label-easy-c6ed:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.text_8632 {
    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);
}

.link_focused_f0b0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link_focused_f0b0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.active-lite-9636 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-f458 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component-f458 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-f458 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_old_a8d7 {
    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;
}

.overlay_old_a8d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message-2c91 {
    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;
}

.summary_282b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.layout-prev-79b4 {
    font-size: 2rem;
}

.paper-4c5b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.notification_8370 {
    flex: 1;
}

.focus-liquid-4228 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.tabs_7538 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar-full-620f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.orange_2146 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form_mini_b38d {
    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;
}

.blue-6873 {
    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;
}

.blue-6873:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.focus_0f4e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-large-46e0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro-52c0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pro-52c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_lower_d7fd {
    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);
}

.header-a773 {
    color: var(--text-white);
    font-weight: 600;
}

.frame-1492 {
    color: var(--accent-color);
    font-weight: 600;
}

.highlight-in-ef04 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.highlight-in-ef04 strong {
    color: var(--accent-color);
}

/* Security Section */
.wrapper-stone-174d {
    padding: var(--section-padding);
}

/* Benefits Section */
.fixed-a9d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.huge-f6dc {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.image-c366 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-d2c8 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.link_613f {
    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) {
    .link_613f {
        flex-direction: column;
        gap: 1rem;
    }
}

.link_613f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link_613f .surface_pink_d488 {
    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;
}

.link_613f .article-clean-1a50 {
    flex: 1;
}

.link_613f .tall_e161 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.link_613f .focused_d0bd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.steel_7db1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_7db1 .inner-87d5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.steel_7db1 .thumbnail-81f3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel_7db1 .thumbnail-81f3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.steel_7db1 .thumbnail-81f3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.smooth-ec39 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.small-db8f {
    padding: var(--section-padding);
}

.link-4cfb {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .link-4cfb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_4537 {
    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);
}

.slider_4537:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.slider_4537 .title_fa67 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_4537 .aside_585a {
    flex: 1;
}

.slider_4537 .input_3097 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider_4537 .primary-clean-7e6a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.label_static_b0df {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_static_b0df .status_9b3a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_static_b0df .focus_light_4da5 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.label_static_b0df .focus_light_4da5 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);
}

.label_static_b0df .focus_light_4da5 li:last-child {
    border-bottom: none;
}

.label_static_b0df .focus_light_4da5 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;
}

.label_static_b0df .focus_light_4da5 li strong {
    color: var(--text-white);
}

.tooltip_fb73 {
    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);
}

.tooltip_fb73 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tooltip_fb73 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.component_fcab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-3bc9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .frame-3bc9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component-ae61 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component-ae61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas_8f12 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-273a {
    font-size: 2rem;
}

.input-106a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content-4878 {
    flex: 1;
}

.bright-1a84 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright-1a84 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bright-1a84 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.aside-iron-07c7 {
    margin-top: 3rem;
}

.badge_2941 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.focused-0bc3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header-white-9648 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-white-9648 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.header-white-9648 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.header-white-9648 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.cool_3a66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-2ed5 {
    margin: 2rem 0;
}

.blue_28ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.blue_28ec .disabled-copper-9d85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link_clean_d3a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link_clean_d3a8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold_81e6 {
    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);
}

.cold_81e6:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hard-eb9a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal_4254 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.section-hard-5e39 {
    padding: var(--section-padding);
}

.hovered_487b {
    margin: 2rem 0;
}

.paragraph-paper-ee49 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .paragraph-paper-ee49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-paper-ee49 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_green_d7a8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.section_green_d7a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.motion_1f82 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.picture-west-0e85 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.wide-187c {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.wide-187c.dropdown_7d8c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.top-9414 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.dropdown_first_47b4 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.south-9b4d {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-simple-0ba6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-181b {
    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);
}

.slider-181b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider-181b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.status_a3fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_1271 {
    margin: 2rem 0;
}

.input-fixed-6a09 {
    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) {
    .input-fixed-6a09 {
        flex-direction: column;
        gap: 1rem;
    }
}

.input-fixed-6a09:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.input-fixed-6a09::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);
}

.short-9aeb {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.focus_old_f7f3 {
    flex: 1;
}

.accordion_east_9843 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.first_c0f4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.first_c0f4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_wood_e6f6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_d23a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast_d67f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fast_d67f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.purple-d284 {
    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);
}

.under_a7af {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.element_action_8b22 {
    flex: 1;
}

.component-23f2 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.content-8d21 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.menu-outer-b1a5 {
    margin-top: 2rem;
    text-align: center;
}

.clean-56fa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.clean-56fa strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.progress-static-73f5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-static-73f5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_cef2 {
    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);
}

.yellow_cef2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.yellow_cef2 .new_620f {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_cef2 .primary_focused_b79f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.yellow_cef2 .red-1602 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.yellow_cef2 .grid_hot_90e4 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.bronze-0c74 {
    padding: var(--section-padding);
}

.container-0fd2 .overlay-f05e {
    flex: 1;
}

/* Promo Calendar Section */
.hidden-7041 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_2e0c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_2e0c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_e7e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_0f92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.selected_4904 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fixed_e4ae {
    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);
}

.item-right-231b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.status-54d9 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.nav-9efe {
    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);
}

.nav-9efe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav-9efe strong {
    color: var(--accent-color);
}

/* Requirements Section */
.preview-short-a66f {
    padding: var(--section-padding);
}

.component_right_9b49 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component_right_9b49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary-9a74 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-tall-3d61 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow_7cbc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slow_7cbc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.message_ec22 {
    margin-top: 3rem;
}

.message_ec22 .badge_2941 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.message_ec22 .focused-0bc3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_ec22 .header-white-9648 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.message_ec22 .header-white-9648 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.message_ec22 .header-white-9648 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.message_ec22 .header-white-9648 li strong {
    color: var(--warning-color);
}

.background_1810 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background_1810 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.column_slow_daf7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle-e1a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-e1a6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_2911 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_2911 .disabled-copper-9d85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.carousel_dark_651d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hard-45e1 {
    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);
}

.hard-45e1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.modal-complex-bd14 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_e5f3 {
    flex: 1;
}

.box_over_10da {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hero_hard_b8fb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.icon_764f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.liquid_b32e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gas-8eee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .gas-8eee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_selected_13a0 {
    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);
}

.item_selected_13a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info-focused-7da4 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-middle-3f81 {
    color: var(--text-gray);
    font-size: 1rem;
}

.section-east-44ea {
    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);
}

.info_under_679b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.info_under_679b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.link_bronze_f9be { 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; }
.widget_south_85b2, .logo_7915 { max-width:100%; height:auto; }

.overlay-old-bd8d, .tertiary_hovered_15d9, .slider_93c3 { white-space:normal; }

.video_inner_34f5,
.label_f10a,
.lite-516b,
.progress-static-73f5,
.item_soft_0ad6,
.tag_1cae {
  flex-wrap:wrap;
}

[class*="grid"],
.gas-8eee,
.paragraph-paper-ee49,
.hero-c94c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.card_hard_2ef3 img,
.label_f10a img,
.gallery-hard-ba6e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.input-gold-6f10, .modal_fdc3,
.notice_2e77, .tag_wood_ae41 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.modal-slow-7afc { width:100%; overflow-x:auto; }
.modal-slow-7afc table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.old_1f25 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .old_1f25 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.menu-3865 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.nav-huge-4018,
.mask_c9db,
.thumbnail-d686,
.logo-last-fdd9,
.north-6244,
.gas-8eee,
.paragraph-paper-ee49,
.hero-c94c,
.inner-42bd,
.alert-basic-c7a8,
.old_1f25 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .nav-huge-4018,
  .mask_c9db,
  .thumbnail-d686,
  .logo-last-fdd9,
  .north-6244,
  .gas-8eee,
  .paragraph-paper-ee49,
  .hero-c94c,
  .inner-42bd,
  .alert-basic-c7a8,
  .old_1f25 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.heading-short-0aa6,
.current-de94,
.item_selected_13a0,
.picture-under-3f75,
.section_green_d7a8,
.liquid_7f0c,
.banner_out_ce48,
.menu-3865 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.yellow-3421,
.mask_lite_c920,
.first-5905 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.yellow-3421 > *,
.mask_lite_c920 > *,
.first-5905 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 66cd */
.shadow-element-q1 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
