/* {$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;
}

.title_active_8ed2 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.black-251f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .black-251f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .black-251f {
        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 */
.widget_12f9 {
    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);
}

.under_a66a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .under_a66a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .section-36db {
        grid-column: 1;
    }
    
    .dropdown-copper-7c8f {
        grid-column: 2;
    }
    
    .logo-37bf {
        grid-column: 3;
    }
}

.section-36db img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.section-36db:hover img {
    transform: scale(1.05);
}

/* Navigation */
.backdrop-full-ca65 {
    display: none;
}

@media (min-width: 1024px) {
    .backdrop-full-ca65 {
        display: block;
    }
}

/* Grouped Navigation */
.avatar_f115 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.large_b407 {
    position: relative;
}

.description-lite-388f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.large_b407 .inner-7bb0 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.inner-7bb0 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.tabs-e1f1 {
    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;
}

.tabs-e1f1:hover,
.tabs-e1f1.fn-active-f687 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.bottom-ea99 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bottom-ea99 {
        display: flex;
    }
}

/* Mobile Register Button */
.dropdown-copper-7c8f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .dropdown-copper-7c8f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.cool-b22c {
    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;
}

.cool-b22c::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 */
.logo-37bf {
    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) {
    .logo-37bf {
        display: none;
    }
}

.logo-37bf span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.logo-37bf.fn-active-f687 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.logo-37bf.fn-active-f687 span:nth-child(2) {
    opacity: 0;
}

.logo-37bf.fn-active-f687 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.layout_c31b {
    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;
}

.layout_c31b.fn-active-f687 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.pagination-c43a {
    overflow: hidden;
}

.pressed-2bbf {
    list-style: none;
    padding: 0.75rem 0;
}

.badge_complex_32f4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
}

.badge_complex_32f4:hover,
.badge_complex_32f4.fn-active-f687 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.badge_complex_32f4.orange_5e25 {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    font-weight: 700;
    text-align: center;
    justify-content: center;
    margin: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.badge_complex_32f4.orange_5e25::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 */
.gradient-b562 {
    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;
}

.warm_a6e8 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.warm_a6e8:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.sort-07f5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.sort-07f5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accent_1314 {
    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;
}

.accent_1314:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.thick_da92 {
    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;
}

.out-ed1d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.out-ed1d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.description_bronze_abf7 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.description_bronze_abf7:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.heading_dim_c158 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.heading_dim_c158: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);
}

.overlay-easy-d1c4 {
    font-size: 1em;
    font-weight: 700;
}

.tertiary_current_6384 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dirty-d819 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dirty-d819::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;
}

.east-0462 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .east-0462 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.article-red-11c4 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.upper-c4c2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.border_old_060d {
    margin-bottom: 2rem;
}

.link_b200 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .link_b200 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_3e78 {
    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);
}

.link_selected_5f6d {
    font-size: 1.5rem;
}

.dark_9a06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.input_37d6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs-e856 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tabs-e856:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.message_2f09 {
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-down-0fd3 {
    margin-bottom: 1rem;
}

.fixed-7c71 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel_glass_1a00 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel_glass_1a00 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel_glass_1a00.gallery-fixed-f97a {
        direction: rtl;
    }
    
    .carousel_glass_1a00.gallery-fixed-f97a > * {
        direction: ltr;
    }
}

.text_new_0327 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text_new_0327:first-child {
    margin-top: 0;
}

.card_37dd {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lite-b456 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.lite-b456:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.soft_6693 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_6693 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.purple-e371 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.under-9414 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.label-a417 {
    list-style: none;
}

.label-a417 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-a417 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hero_c146 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.secondary-fresh-497d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disabled_short_62c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.hard_87b1 {
    margin: 2rem 0;
}

.notice_ba12 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.frame_selected_0da3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.background-solid-8d8e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.accordion-huge-30e0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.table-e20b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-e20b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_f6d2 {
    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);
}

.up_f6d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary_2d6a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.button-cb2c {
    font-size: 1.5rem;
}

.grid_full_90e8 {
    color: var(--accent-color);
    margin: 0;
}

.sort-5aba {
    list-style: none;
}

.sort-5aba li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.sort-5aba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.section-3408 {
    margin: 2rem 0;
}

.disabled-e0f6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tiny-8a5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tiny-8a5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_75fe {
    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);
}

.item_liquid_9bee {
    font-size: 1.25rem;
}

.gas_28ce {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.grid-east-a35f,
.shadow-8e3e {
    text-align: center;
    margin: 2rem 0;
}

.advanced-c3b2,
.brown_5ac3 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.warm-3e15 {
    margin: 2rem 0;
    text-align: center;
}

.item-motion-495c {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.item-motion-495c::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;
}

.gallery-mini-3c69 {
    position: relative;
    z-index: 1;
}

.secondary_35e3 {
    margin-bottom: 1rem;
}

.stone-828c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge_advanced_ccb9 {
    margin-bottom: 3rem;
}

.pagination_focused_9dd9 {
    margin-top: 3rem;
}

.frame_under_1b98 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .frame_under_1b98 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_under_1b98 .background_3e78 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_494e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-3f75 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.gas-6821 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.wrapper-medium-f701 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .wrapper-medium-f701 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-medium-f701 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.bright-c432 {
    margin-bottom: 1rem;
}

.selected_0942 img {
    margin-bottom: 1rem;
}

.column_77c5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_yellow_e8df {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thumbnail-f1c8 {
    list-style: none;
}

.thumbnail-f1c8 li {
    margin-bottom: 0.5rem;
}

.thumbnail-f1c8 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.thumbnail-f1c8 a:hover {
    color: var(--accent-color);
}

.wrapper-current-c446 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card_narrow_c20f {
    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);
}

.card_narrow_c20f:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.container-white-3f52 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.container-white-3f52 p {
    margin-bottom: 0.25rem;
}

.logo-black-743b {
    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) {
    .logo-black-743b {
        flex-direction: row;
    }
}

.slider-fa84 {
    text-align: center;
}

@media (min-width: 768px) {
    .slider-fa84 {
        text-align: left;
    }
}

.slider-fa84 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description_yellow_c659 {
    font-size: 0.75rem !important;
}

.dropdown-motion-e77d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.backdrop_motion_c22a {
    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);
    }
}

.medium_f303 {
    animation: fadeInUp 0.6s ease-out;
}

.complex_934c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.text-dark-fd29 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-dark-fd29 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.filter_bronze_2e09 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_bronze_2e09 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_9026 {
    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);
}

.medium_9026 .disabled_short_62c7 {
    font-size: 1.25rem;
}

.medium_9026 .media-4989 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.grid_fluid_c706 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid_fluid_c706 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-c8f2 {
    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);
}

.panel-c8f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_f6c0 {
    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);
}

.outline-82b3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.huge-f124 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-918a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light-06e8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.light-06e8 .middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light-06e8 .slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light-39c0 {
    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-stale-89b7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.backdrop-stale-89b7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.backdrop-stale-89b7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.disabled-bottom-fb46 {
    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);
}

.dim_c964 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component-east-8dca {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.component-east-8dca label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component-east-8dca 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);
}

.component-east-8dca input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.component-east-8dca input::placeholder {
    color: var(--text-muted);
}

.banner_04f6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.south-ff44 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.south-ff44 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.gallery_230d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.gallery_230d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tiny-8a5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-8a5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_75fe {
    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);
}

.column_75fe .item_liquid_9bee {
    font-size: 1.25rem;
}

.column_75fe .gas_28ce {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.preview-34c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_44ee {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_44ee .disabled_short_62c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_44ee .middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_44ee .slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_f188 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_deae {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_deae .tooltip_dac7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter_deae .simple-f9e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_9b67 {
    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);
}

.texture-fresh-5fb2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture-fresh-5fb2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-03c7 {
    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);
}

.component-03c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-smooth-57a8 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.action_ef95 {
    flex: 1;
}

.silver_1b88 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-100d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shadow_steel_0408 {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.shadow_steel_0408:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.mask-cdef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-cdef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_red_d18f {
    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);
}

.chip_red_d18f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_579f {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-pressed-292c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popup-dynamic-f2e6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail-hard-3e65 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-gas-f88b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption_inner_6d5d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-168a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.last-168a .input_first_bdbc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last-168a .pagination-mini-46a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-d9eb {
    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);
}

.dark_ea98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-2264 {
    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);
}

.carousel-2264 .disabled_short_62c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel-2264 .middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-2264 .slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough_c721 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_c721 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-west-ee27 {
    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);
}

.container-west-ee27:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.wrapper_3247 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_3247 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-2488 {
    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);
}

.inner-2488:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_dfcd {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_thick_26a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.frame_selected_0da3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.menu_lite_d3d4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.thumbnail-full-8720 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_f6e4 {
    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);
}

.active_f6e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_adda {
    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);
}

.list_hard_e432 {
    flex: 1;
}

.carousel-lite-0654 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.short-f5cf {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bronze-5d12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_ca81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading-926d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-926d .tooltip_dac7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading-926d .simple-f9e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-8e3e {
    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);
}

.feature_af15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_af15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.paragraph-bb90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-bb90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-b3b9 {
    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);
}

.left-b3b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_iron_3e5d {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered_cd68 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bronze_ab65 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.prev-c577 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge_up_82b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-8013 {
    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);
}

.border-first-0411 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_f113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_blue_818f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_ea98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-2264 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.carousel-2264 .middle-f445 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-2264 .slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-c79f {
    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);
}

.active-f085 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active-f085 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-f085 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_764d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wrapper_764d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_659f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.clean_5be9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paragraph_thick_8fdb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.progress-fresh-254d {
    padding: 1.5rem;
}

.focus-810a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-rough-0924 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-rough-0924 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;
}

.gallery-rough-0924 li:last-child {
    border-bottom: none;
}

.gallery-rough-0924 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.copper_7e23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .copper_7e23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-4f78 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.advanced-4f78:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_e9d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.rough-4fcc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.down_adf8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.inner-19a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.search_dark_0296 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-smooth-74ea {
    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);
}

.hidden-66e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-04bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.current_4345 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_left_34bc {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.search_d0a7 {
    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);
}

.text_mini_585e {
    text-align: center;
}

.popup_6157 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.module-hard-a3d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard_759b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_759b .middle-f445 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard_759b .slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-dcc6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic-dcc6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-dcc6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_07d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert_07d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_2e0b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.lite-9649 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.middle-f445 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.shade-new-0eda {
    padding: 1.5rem;
}

.slider-over-ac26 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav_south_d965 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_south_d965 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;
}

.nav_south_d965 li:last-child {
    border-bottom: none;
}

.nav_south_d965 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.in-9d4e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.clean-604a {
    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);
}

.clean-604a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight-focused-0689 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-motion-3542 {
    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);
}

.hidden_f6c0 {
    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;
}

.outline-82b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.huge-f124 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_a1f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_small_b977 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.header-7afb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title_static_a1a4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pro-09e1 {
    display: flex;
    gap: 1rem;
}

.pro-09e1 .dirty-68dc {
    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;
}

.active_d311 {
    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);
}

.border_ef27 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.video_active_025a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_active_025a 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;
}

.video_active_025a li:last-child {
    border-bottom: none;
}

.video_active_025a li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.chip-right-3f1f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .chip-right-3f1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-right-3f1f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_1c6f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full_1c6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-1708 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_b8f8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_first_bdbc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.blue-e013 {
    font-size: 1rem;
}

.main_wood_9a23 {
    padding: 1.5rem;
}

.pagination-mini-46a7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pattern-stale-0e5b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pattern-stale-0e5b .text_mini_585e {
    text-align: center;
}

.pattern-stale-0e5b .mask_tiny_fe0d {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pattern-stale-0e5b .icon-tall-8e29 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled-d51d {
    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);
}

.disabled-d51d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.focus_lower_3171 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_lower_3171 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_493f {
    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);
}

.header_493f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_dark_2fec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-medium-56a8 {
    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);
}

.avatar_hard_f6b5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_right_4c31 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.out-978e {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_huge_88b4 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary-5629 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-dark-95fd {
    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);
}

.east_8c88 {
    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;
}

.east_8c88.sidebar_110d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.east_8c88.middle_17b6 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.east_8c88.photo-004c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.east_8c88.new_dbdf {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.east_8c88.sidebar-top-f2ec {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.focus_160f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background_pro_afb6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper_3a0b {
    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);
}

.carousel_fixed_6623 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop_f188 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop_f188 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;
}

.backdrop_f188 li:last-child {
    border-bottom: none;
}

.backdrop_f188 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.media_yellow_5de9 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media_yellow_5de9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_yellow_5de9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-c70a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element-c70a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-c70a.center-3cba {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .element-c70a.center-3cba {
        grid-column: span 3;
    }
}

.black_3fa9 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.element-c70a.center-3cba .black_3fa9 {
    background: rgba(6, 182, 212, 0.1);
}

.preview_91c7 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.upper-6e04 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.element-c70a.center-3cba .upper-6e04 {
    color: var(--info-color);
}

.warm_92cb {
    padding: 1.5rem;
    text-align: center;
}

.form_static_a119 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.element-c70a.center-3cba .form_static_a119 {
    color: var(--info-color);
}

.caption-complex-73e4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.element_2551 {
    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 */
.menu-dynamic-4c42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-dynamic-4c42 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_8457 {
    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);
}

.footer_8457:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-9cd1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_44ee {
    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);
}

.item_liquid_9bee {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_down_a6ae {
    flex: 1;
}

.disabled-e0f6 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dynamic-c111 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-3904 {
    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);
}

.tiny-bec2 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dirty_bba4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.backdrop_motion_c22a {
    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);
}

.dropdown-806c {
  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);
}

.dropdown-806c .text_mini_585e {
    text-align: center;
}

.dropdown-806c .popup_6157 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.dropdown-806c .mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.red-e00d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content-warm-c80a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-b754 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert_2ea2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_west_4cdf {
    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);
}

.under_e44b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown-green-654e {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_c715 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .next_c715 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .next_c715 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_fluid_416c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.detail_fluid_416c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-e19a {
    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);
}

.box_first_75b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.huge-186d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.card_d8fa {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card_d8fa.bottom_af49 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card_d8fa.gold-9644 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.card_d8fa.main-7c45 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.outline-old-5560 {
    padding: 1.5rem;
    text-align: center;
}

.logo_06d1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav_50e1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.nav_50e1 .tabs_over_fab6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.slider_4c11 {
    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);
}

.slider_4c11:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.badge-soft-8c26 {
  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);
}

.pink-d3ae {
    text-align: center;
}

.pink-d3ae .popup_6157 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.pink-d3ae .mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.widget_dirty_4561 { text-align: center; }
.outline-248a { text-align: left; }
.disabled-f197 { text-align: right; }

.wrapper-blue-91c1 { margin-bottom: 0; }
.photo_eed9 { margin-bottom: 0.5rem; }
.accent-ed25 { margin-bottom: 1rem; }
.outline_liquid_e03b { margin-bottom: 1.5rem; }
.layout-2a58 { margin-bottom: 2rem; }

.bottom_d16f { margin-top: 0; }
.icon-74b5 { margin-top: 0.5rem; }
.cool-431b { margin-top: 1rem; }
.popup_86d4 { margin-top: 1.5rem; }
.item-mini-5815 { margin-top: 2rem; }

.fn-hidden-f687 { display: none; }
.fn-visible-f687 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dirty-d819 {
        padding: 6rem 0 3rem;
    }
    
    .east-0462 {
        text-align: center;
    }
    
    .carousel_glass_1a00 {
        text-align: center;
    }
    
    .link_b200 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .widget_12f9,
    .layout_c31b,
    .item-motion-495c,
    .gas-6821 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dirty-d819 {
        background: none;
    }
}

/* Providers Section */
.top-6f82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered-3dd4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered-3dd4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hovered-3dd4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-c24f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-c24f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.container-first-066b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.message-cb2c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.smooth_7373 {
    list-style: none;
    padding: 0;
}

.smooth_7373 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.smooth_7373 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.search-plasma-6b9e {
    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);
}

.search-plasma-6b9e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.frame-2bad {
    padding: var(--section-padding);
}

.shadow-static-7eb6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-static-7eb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh-a222 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fresh-a222:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.active_4e8f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.background-soft-b244 {
    display: flex;
    flex-direction: column;
}

.bronze-2318 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.west_b040 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.paragraph-23bb {
    color: var(--accent-color);
}

.title_rough_9caf {
    font-size: 1.25rem;
}

.steel_920c {
    margin-bottom: 1rem;
}

.steel_920c p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.active-b17e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.secondary_light_4c57 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.text_mini_585e {
    text-align: center;
}

.popup_6157 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.bright-646a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_b010 {
    margin: 2rem 0;
}

.focus_410c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.focus_410c .disabled_short_62c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu-6372 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.heading-3e7b {
    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;
}

.heading-3e7b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar-381c {
    font-size: 2rem;
}

.photo_lite_3815 {
    display: flex;
    flex-direction: column;
}

.box-89a7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.picture-187b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.active-fd20 {
    padding: var(--section-padding);
}

.icon_8210 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .icon_8210 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon_8210 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-38e7 {
    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);
}

.progress-38e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress-38e7 .popup_6157 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.progress-38e7 .mask_tiny_fe0d {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.progress-38e7 .dim_b8be {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.column_e638 {
    margin-top: 4rem;
}

.description_steel_8772 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.form_gold_b32c {
    overflow-x: auto;
}

.over_5536 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.over_5536 thead {
    background: var(--accent-color);
}

.over_5536 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.over_5536 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.over_5536 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.over_5536 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.disabled_purple_1818 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-66dc {
    max-width: 900px;
    margin: 0 auto;
}

.modal_a594 {
    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);
}

.modal_a594:hover {
    border-color: var(--accent-color);
}

.module_5c76 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.module_5c76 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.icon-b8a6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.modal_a594.fn-active-f687 .icon-b8a6 {
    transform: rotate(45deg);
}

.glass-2c5c {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.modal_a594.fn-active-f687 .glass-2c5c {
    max-height: 1000px;
}

.glass-2c5c p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.icon-paper-b2e8 {
    padding: var(--section-padding);
}

.backdrop-stale-89b7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.message_brown_2b6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty_a94e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty_a94e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-hard-4279 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy_cbba {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.west_55a8 {
    font-size: 2rem;
}

.paper_1c63 {
    color: var(--text-white);
    margin: 0;
}

.focus-a58a {
    list-style: none;
    padding: 0;
}

.focus-a58a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-a58a li:last-child {
    border-bottom: none;
}

.layout-out-7068 {
    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);
}

.layout-out-7068 p {
    color: var(--success-color);
    margin: 0;
}

.hot_b610 {
    margin-top: 3rem;
}

.border_ef27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.top_7e2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .top_7e2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider-afc0 {
    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);
}

.wrapper-over-ff8a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slider-afc0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.advanced-0e08 {
    padding: var(--section-padding);
}

.pattern_1dbe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_1dbe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_cold_1d9b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_cold_1d9b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.right_396b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.primary_medium_e95d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.input-focused-91be {
    flex: 1;
}

.menu-motion-0db7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.grid_3e6d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.frame_6777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_31a9 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.static_31a9:last-child {
    border-bottom: none;
}

/* Comparison Section */
.chip-light-05d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.column_d579 {
    padding: var(--section-padding);
}

.chip_da26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.search-5785 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-5785 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex-ee17 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-narrow-c22b, .description-25af, .widget-first-ff22 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.widget-first-ff22 {
    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 */
.accordion-fa0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_6da3 {
    margin: 2rem 0;
}

.widget_62d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_west_03ef {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.huge_e336 {
    list-style: none;
    padding: 0;
}

.huge_e336 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;
}

.huge_e336 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.huge_e336 li:last-child {
    border-bottom: none;
}

.description-ee1d {
    text-align: center;
    margin-top: 2rem;
}

.button-db73 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.texture-south-7cdf {
    padding: var(--section-padding);
}

.aside-dim-cac9 {
    margin: 2rem 0;
}

.surface_044f {
    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) {
    .surface_044f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.surface_044f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.in-6224 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.green_33d7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.list_fixed_4547 {
    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;
}

.footer-green-e968 {
    flex: 1;
}

.chip-aacd {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outline-motion-1f40 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pattern-bronze-c089 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.media_8630 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .media_8630 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.disabled_static_5803 {
    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);
}

.disabled_static_5803:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_static_5803 .popup_6157 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_static_5803 .mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 1rem;
}

.notice_pink_4246 {
    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);
}

.gallery_liquid_dad7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.gallery_liquid_dad7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.tall-c90d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .tall-c90d {
        grid-template-columns: 1fr 1fr;
    }
}

.texture_motion_107c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-tiny-6196 {
    margin-bottom: 1.5rem;
}

.backdrop-tiny-6196 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.backdrop-tiny-6196 input,
.backdrop-tiny-6196 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;
}

.backdrop-tiny-6196 input:focus,
.backdrop-tiny-6196 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.white_75ed {
    width: 100%;
    margin-top: 1rem;
}

.button-7710 {
    display: flex;
    align-items: center;
}

.overlay-d2fa {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.column-5590 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.info-dirty-c436 {
    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;
}

.dropdown_0ab8 {
    color: var(--text-gray);
}

.secondary-291c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.up_1520 {
    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);
}

.up_1520 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.dynamic-cb7d {
    margin-top: 3rem;
}

.panel-west-c1db {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.highlight_clean_2178 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-old-ac78 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.popup_3361 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_3361:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.main_7910 {
    padding: var(--section-padding);
}

.fixed-a388 {
    margin: 2rem 0;
}

.grid-yellow-b9b2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-0939 {
    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;
}

.form-0939:hover, .form-0939.fn-active-f687 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.soft_a00e {
    display: none;
}

.soft_a00e.fn-active-f687 {
    display: block;
}

.preview_first_06bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_8415 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-full-9902 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.backdrop-full-9902 ul {
    list-style: none;
    padding: 0;
}

.backdrop-full-9902 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.backdrop-full-9902 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pro_893e {
    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 */
.box_short_6db1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_f106 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper_4bd7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.container_4c54 {
    color: var(--accent-color);
    margin: 0;
}

.shade_bottom_56fb {
    display: flex;
    gap: 1.5rem;
}

.overlay-tiny-32b7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thick-31e2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.panel-ab1a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel-ab1a.content-current-d92d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.panel-ab1a.image-stale-bd5a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.panel-ab1a.complex_7747 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.narrow_b334 {
    margin-top: 2rem;
}

.accent-stone-7209 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.current_08ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .current_08ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-stone-cc95 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.item-dea8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.logo-over-712e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.last_51c1 {
    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 */
.picture-1610 {
    padding: var(--section-padding);
}

.hidden-silver-0853 {
    margin: 2rem 0;
}

.south_96e4 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.button-gold-3eec {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.bronze_9814 {
    list-style: none;
    padding: 0;
}

.bronze_9814 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;
}

.bronze_9814 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.bronze_9814 li:last-child {
    border-bottom: none;
}

.left-fd2b {
    margin: 2rem 0;
}

.row-static-1091 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.middle_b71f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .middle_b71f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box-middle-eadd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_7a4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-00dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature-gas-540f {
    margin-top: 2rem;
}

.silver_1b88 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.carousel_aa6c {
    list-style: none;
    padding: 0;
}

.badge-33e0 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.badge-33e0 a {
    color: var(--accent-color);
    text-decoration: none;
}

.badge-33e0 a:hover {
    text-decoration: underline;
}

.frame-orange-df92 {
    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 */
.label_adb0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_huge_8e9d {
    margin: 2rem 0;
}

.texture-884a {
    margin-bottom: 3rem;
}

.texture-884a .card_west_03ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.container-focused-9d10 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.action_e605 {
    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);
}

.action_e605:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.message_8935 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .message_8935 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_gold_e1e1 {
    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 */
.inner-5a8e {
    padding: var(--section-padding);
}

.hero-c843 {
    margin: 2rem 0;
}

.blue_dd23 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paper_291d {
    overflow-x: auto;
    margin: 2rem 0;
}

.lite-86fe {
    background: rgba(6, 182, 212, 0.1) !important;
}

.link-9f10 {
    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;
}

.middle_368f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.pattern_center_05b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pattern_center_05b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_static_9ae4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_static_9ae4 .disabled_short_62c7 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.aside_static_9ae4 .middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message-b7e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.plasma_2377 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner_47f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .inner_47f9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-3e17 {
    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;
}

.overlay-3e17:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.primary_brown_1d0b {
    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);
}

.cold_a6ba {
    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;
}

.frame_bright_569d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video-static-5cda {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.caption-8c8a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.list-92aa {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-7bce {
    color: var(--text-white);
    font-weight: 600;
}

.component-right-1c4f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tooltip_down_8629 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_down_8629 .dirty-68dc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.icon_059e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_059e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_ff39 {
    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);
}

.media_ff39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media_ff39 .popup_6157 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_ff39 .mask_tiny_fe0d {
    color: var(--text-gray);
    font-size: 1rem;
}

.focus-tiny-5965 {
    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);
}

.accordion-b882 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.accordion-b882 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.badge_up_82b2 {
    margin: 2rem 0;
}

.focus-8013 {
    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);
}

.focus-8013:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.border-first-0411 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel-a1f0 {
    flex: 1;
}

.image_f113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_blue_818f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.dark_ea98 {
    margin: 2rem 0;
}

.carousel-2264 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-2264 .middle-f445 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.carousel-2264 .slider-over-ac26 {
    color: var(--text-gray);
    margin: 0;
}

.text-c79f {
    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);
}

.text-c79f .advanced-c3b2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.message-b7e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.soft_adda {
    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;
}

.list_hard_e432 {
    flex: 1;
}

.short-f5cf {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.bronze-5d12 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hidden_f6c0 {
    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;
}

.primary-4171 {
    flex: 1;
}

.outline-82b3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.huge-f124 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.header-7afb {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.title_static_a1a4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.pro-09e1 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pro-09e1 .dirty-68dc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active_d311 {
    margin-top: 2rem;
}

.active_d311 .border_ef27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.out-0eff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_d0a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search_d0a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_d0a7 .text_mini_585e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-hard-a3d6 {
    margin: 2rem 0;
}

.hard_759b {
    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 */
.tall-7cbe {
    padding: var(--section-padding);
}

.shade-new-0eda {
    margin-top: 1rem;
}

.nav_south_d965 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.nav_south_d965 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.nav_south_d965 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.preview-dirty-35f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange_9244 {
    margin: 2rem 0;
}

.row-c3bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.hidden_68db {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sort_8f11 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.description-af39 {
    margin: 2rem 0;
}

.search-610d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.search-610d .card_west_03ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_dirty_de4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_dirty_de4d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block_9e75 {
    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);
}

.breadcrumb_gold_2dfb {
    color: var(--text-white);
    font-weight: 600;
}

.search_c2a6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.accordion_60db {
    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);
}

.accordion_60db p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.purple_89ae {
    padding: var(--section-padding);
}

.hover_slow_ef44 {
    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;
}

.hover_slow_ef44:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fixed-a781 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-a781 .wrapper-over-ff8a {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-a781 .paragraph-071b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.chip_6053 {
    flex: 1;
}

.dropdown-bottom-8da4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copper-ebc0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper-ebc0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.copper-ebc0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.mini_450e {
    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);
}

.mini_450e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mini_450e strong {
    color: var(--warning-color);
}

/* Slots Section */
.background-light-a4bc {
    padding: var(--section-padding);
}

.sidebar-gas-f88b {
    margin: 2rem 0;
}

/* Table Games Section */
.surface_mini_4303 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_inner_6d5d {
    margin: 2rem 0;
}

.last-168a {
    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);
}

.last-168a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.last-168a .input_first_bdbc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last-168a .pagination-mini-46a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.avatar-d9eb {
    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);
}

.avatar-d9eb .advanced-c3b2 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.container_84dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-f79e {
    margin: 2rem 0;
}

.table_40a6 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-648d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu-top-3daf {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_47a3 {
    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);
}

.popup_47a3:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.popup_47a3.fn-active-f687 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_motion_f6c2 {
    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);
}

.message-ced8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message-ced8 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.tag-85df {
    padding: var(--section-padding);
}

.hover_under_9dba {
    margin: 2rem 0;
}

.notification_center_fbac {
    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);
}

.notification_center_fbac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .notification_center_fbac {
        flex-direction: column;
        align-items: flex-start;
    }
}

.avatar_tall_88b6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.layout_7ccf {
    flex: 1;
}

.notification_ff62 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lower-66d5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.active_blue_4d72 {
    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;
}

.texture_b779 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade_smooth_cf8e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.texture_0d0c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.silver_0607 {
    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;
}

.silver_0607:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.disabled_orange_57ff {
    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);
}

.shade_aae6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_aae6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.surface_73cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.center-e531 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .center-e531 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .center-e531 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_silver_91f2 {
    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;
}

.grid_silver_91f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dark-93d7 {
    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;
}

.menu_motion_b8c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.gradient_415f {
    font-size: 2rem;
}

.element-left-2ab1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.box-5229 {
    flex: 1;
}

.description_827f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.filter_liquid_0914 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.aside-dynamic-d179 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification-e3e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tertiary_0322 {
    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;
}

.primary-be85 {
    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;
}

.primary-be85:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.in_86a6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_dark_160a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot-72ae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hot-72ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_1131 {
    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);
}

.filter_stone_cf31 {
    color: var(--text-white);
    font-weight: 600;
}

.primary-blue-2cd6 {
    color: var(--accent-color);
    font-weight: 600;
}

.module-dim-e0cd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.module-dim-e0cd strong {
    color: var(--accent-color);
}

/* Security Section */
.summary_bronze_66cf {
    padding: var(--section-padding);
}

/* Benefits Section */
.banner-8316 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.texture-4cda {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.last-333d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper_f820 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.text_9fd1 {
    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) {
    .text_9fd1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.text_9fd1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.text_9fd1 .hidden_f6c0 {
    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;
}

.text_9fd1 .primary-4171 {
    flex: 1;
}

.text_9fd1 .outline-82b3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.text_9fd1 .huge-f124 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.out_83d3 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_83d3 .disabled-e0f6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out_83d3 .preview-34c6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out_83d3 .preview-34c6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.out_83d3 .preview-34c6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.logo_bright_6103 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.narrow_c212 {
    padding: var(--section-padding);
}

.heading-5432 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .heading-5432 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_9ad2 {
    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);
}

.next_9ad2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.next_9ad2 .dim_d24a {
    font-size: 2rem;
    flex-shrink: 0;
}

.next_9ad2 .grid_selected_5d3f {
    flex: 1;
}

.next_9ad2 .tooltip_dac7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next_9ad2 .video_outer_1b57 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.out-e005 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-e005 .breadcrumb_huge_2821 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out-e005 .notice-fe8d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.out-e005 .notice-fe8d 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);
}

.out-e005 .notice-fe8d li:last-child {
    border-bottom: none;
}

.out-e005 .notice-fe8d 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;
}

.out-e005 .notice-fe8d li strong {
    color: var(--text-white);
}

.block_1eff {
    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);
}

.block_1eff p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_1eff strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.section_8c40 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple-5c91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .simple-5c91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb_over_f198 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_over_f198:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.picture-next-ca16 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-f88e {
    font-size: 2rem;
}

.over-ac80 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.static-3cae {
    flex: 1;
}

.list_23d2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_23d2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.list_23d2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.inner_ed7a {
    margin-top: 3rem;
}

.south_96e4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button-gold-3eec {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bronze_9814 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze_9814 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.bronze_9814 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.bronze_9814 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.content_3601 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge-00a9 {
    margin: 2rem 0;
}

.outline_39d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.outline_39d7 .card_west_03ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content-wide-0057 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .content-wide-0057 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-286f {
    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);
}

.tooltip-286f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.item_1c46 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.breadcrumb-dim-c9f5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.container-4960 {
    padding: var(--section-padding);
}

.icon_inner_261b {
    margin: 2rem 0;
}

.selected_7a50 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .selected_7a50 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected_7a50 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_52f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel_52f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb_mini_be13 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-5f3f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.filter-down-0ab8 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.filter-down-0ab8.banner_green_020b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tooltip_hovered_a416 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.hovered-e088 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.purple-522f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-fcf4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stale-8791 {
    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);
}

.stale-8791 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stale-8791 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.gas_0656 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-81d9 {
    margin: 2rem 0;
}

.green_c05b {
    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) {
    .green_c05b {
        flex-direction: column;
        gap: 1rem;
    }
}

.green_c05b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.green_c05b::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);
}

.filter_selected_8272 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.aside-east-7780 {
    flex: 1;
}

.sort_66a7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-cool-d014 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-cool-d014 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-929c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-daa8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bottom_b0da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bottom_b0da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma-e199 {
    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);
}

.hero-f5eb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.border_7c84 {
    flex: 1;
}

.element-3a46 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.cool_3484 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.disabled_0ecf {
    margin-top: 2rem;
    text-align: center;
}

.paper_6e40 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paper_6e40 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.focus_lower_3171 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_lower_3171 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_493f {
    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);
}

.header_493f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header_493f .link_e9d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_493f .rough-4fcc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.header_493f .down_adf8 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.header_493f .inner-19a5 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.top-6671 {
    padding: var(--section-padding);
}

.sort-medium-56a8 .bottom_894c {
    flex: 1;
}

/* Promo Calendar Section */
.search-current-37d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick_b2cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_b2cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_5eb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_6815 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.panel_90cf {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blue-ec20 {
    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);
}

.row_4f45 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip_smooth_8926 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thumbnail-2568 {
    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);
}

.thumbnail-2568 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-2568 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tag_motion_fc46 {
    padding: var(--section-padding);
}

.liquid_24dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .liquid_24dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.narrow-3bcc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_3a5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.new-39e8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-39e8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-d6c1 {
    margin-top: 3rem;
}

.footer-d6c1 .south_96e4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.footer-d6c1 .button-gold-3eec {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-d6c1 .bronze_9814 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-d6c1 .bronze_9814 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.footer-d6c1 .bronze_9814 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.footer-d6c1 .bronze_9814 li strong {
    color: var(--warning-color);
}

.filter-7900 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.filter-7900 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tabs_c3de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-53f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-53f9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-plasma-612f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-plasma-612f .card_west_03ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.white_41f9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_solid_ea1c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.disabled_solid_ea1c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.item-d57b {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_iron_9ce8 {
    flex: 1;
}

.east-2b3d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.active_0241 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fast_9ca8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.module-651b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dark_b4cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .dark_b4cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_e643 {
    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);
}

.card_e643:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-c577 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_paper_1a51 {
    color: var(--text-gray);
    font-size: 1rem;
}

.gallery_liquid_dad7 {
    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);
}

.element_d75b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.element_d75b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.black-251f { 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; }
.tabs-e856, .lite-b456 { max-width:100%; height:auto; }

.gradient-b562, .accent_1314, .thick_da92 { white-space:normal; }

.east-0462,
.carousel_glass_1a00,
.menu-dynamic-4c42,
.focus_lower_3171,
.dark_ea98,
.next_c715 {
  flex-wrap:wrap;
}

[class*="grid"],
.dark_b4cf,
.selected_7a50,
.frame_under_1b98 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dirty-d819 img,
.carousel_glass_1a00 img,
.input_37d6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.article-red-11c4, .upper-c4c2,
.highlight-down-0fd3, .fixed-7c71 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.form_gold_b32c { width:100%; overflow-x:auto; }
.form_gold_b32c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hovered-3dd4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hovered-3dd4 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.photo-c24f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.icon_8210,
.tag_large_be2d,
.tertiary_gold_409d,
.green_3e07,
.media_8630,
.dark_b4cf,
.selected_7a50,
.frame_under_1b98,
.badge-soft-8c26,
.hover_under_9dba,
.hovered-3dd4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .icon_8210,
  .tag_large_be2d,
  .tertiary_gold_409d,
  .green_3e07,
  .media_8630,
  .dark_b4cf,
  .selected_7a50,
  .frame_under_1b98,
  .badge-soft-8c26,
  .hover_under_9dba,
  .hovered-3dd4 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.progress-38e7,
.disabled_static_5803,
.card_e643,
.background_3e78,
.panel_52f0,
.pink-d3ae,
.notification_center_fbac,
.photo-c24f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.highlight_focused_c496,
.next-c7e9,
.large_9da2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.highlight_focused_c496 > *,
.next-c7e9 > *,
.large_9da2 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d06d */
.shadow-element-m7 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
