/* {$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;
}

.soft-7130 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.video-c827 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .video-c827 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .video-c827 {
        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 */
.sidebar_ea26 {
    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);
}

.summary_6a8e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .summary_6a8e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .sidebar_b29d {
        grid-column: 1;
    }
    
    .container-41e1 {
        grid-column: 2;
    }
    
    .hard_d15f {
        grid-column: 3;
    }
}

.sidebar_b29d img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.sidebar_b29d:hover img {
    transform: scale(1.05);
}

/* Navigation */
.element_a989 {
    display: none;
}

@media (min-width: 1024px) {
    .element_a989 {
        display: block;
    }
}

/* Grouped Navigation */
.nav-ab22 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tertiary_2be5 {
    position: relative;
}

.full_0583 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tertiary_2be5 .notification_middle_8eaa {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.notification_middle_8eaa {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.summary-first-eb05 {
    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;
}

.summary-first-eb05:hover,
.summary-first-eb05.fn-active-2703 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.in_41b6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .in_41b6 {
        display: flex;
    }
}

/* Mobile Register Button */
.container-41e1 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .container-41e1 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.complex-09c6 {
    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;
}

.complex-09c6::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 */
.hard_d15f {
    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) {
    .hard_d15f {
        display: none;
    }
}

.hard_d15f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hard_d15f.fn-active-2703 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hard_d15f.fn-active-2703 span:nth-child(2) {
    opacity: 0;
}

.hard_d15f.fn-active-2703 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.form_smooth_38fe {
    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;
}

.form_smooth_38fe.fn-active-2703 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.under-8e47 {
    overflow: hidden;
}

.badge_46b3 {
    list-style: none;
    padding: 0.75rem 0;
}

.link-c42f {
    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;
}

.link-c42f:hover,
.link-c42f.fn-active-2703 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.link-c42f.card_6ba2 {
    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;
}

.link-c42f.card_6ba2::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 */
.paragraph_6de4 {
    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;
}

.avatar-44f7 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.avatar-44f7:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.tag_middle_bc07 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tag_middle_bc07:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.element_dynamic_180d {
    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;
}

.element_dynamic_180d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.clean-f5ff {
    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;
}

.logo-4a0f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.logo-4a0f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tiny-25b6 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tiny-25b6:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.list-808c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.list-808c:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.notification-8a9c {
    font-size: 1em;
    font-weight: 700;
}

.steel-69cd {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.pattern-84ce {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.pattern-84ce::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;
}

.shadow_lower_9f61 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .shadow_lower_9f61 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gradient-590c {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.info-d3b7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.secondary_c5d8 {
    margin-bottom: 2rem;
}

.breadcrumb_rough_e9eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .breadcrumb_rough_e9eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_5c04 {
    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);
}

.outer-0fc9 {
    font-size: 1.5rem;
}

.module-middle-0c39 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.down_60f8 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clean-d1f4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.clean-d1f4:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.chip-1a5e {
    text-align: center;
    margin-bottom: 3rem;
}

.form_brown_b2ce {
    margin-bottom: 1rem;
}

.video_center_60f2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.panel_66d4 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .panel_66d4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .panel_66d4.media-smooth-4ef5 {
        direction: rtl;
    }
    
    .panel_66d4.media-smooth-4ef5 > * {
        direction: ltr;
    }
}

.overlay_2464 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.overlay_2464:first-child {
    margin-top: 0;
}

.pressed-a6b5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lite_6347 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.lite_6347:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.prev-1a57 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-1a57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-48da {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.green_4bf2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.nav_aaa8 {
    list-style: none;
}

.nav_aaa8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_aaa8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.label-f29c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.frame_dark_4718 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.picture_e94e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.in-21fc {
    margin: 2rem 0;
}

.dirty_6679 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.prev_3707 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.red_bb96 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.progress_bottom_824b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.fluid-e5e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-e5e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-paper-4ed1 {
    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);
}

.layout-paper-4ed1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern-dirty-fc2a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.popup_0661 {
    font-size: 1.5rem;
}

.modal_d3f2 {
    color: var(--accent-color);
    margin: 0;
}

.sort_3c6b {
    list-style: none;
}

.sort_3c6b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.sort_3c6b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.form_9e6c {
    margin: 2rem 0;
}

.outline_1700 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tertiary_light_b16f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tertiary_light_b16f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-5f8f {
    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);
}

.row_bfdd {
    font-size: 1.25rem;
}

.inner-35ad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.mask_under_5b11,
.caption-cool-6da3 {
    text-align: center;
    margin: 2rem 0;
}

.paragraph_iron_ecbd,
.block_3634 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.video_32b2 {
    margin: 2rem 0;
    text-align: center;
}

.active_hard_70ba {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.active_hard_70ba::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;
}

.right-9e0c {
    position: relative;
    z-index: 1;
}

.form-f7de {
    margin-bottom: 1rem;
}

.photo-4a6d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-dynamic-9a4c {
    margin-bottom: 3rem;
}

.backdrop-short-2ba5 {
    margin-top: 3rem;
}

.focus_d88b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .focus_d88b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_d88b .lower_5c04 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.basic-3b81 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_7b75 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.slow-ddb2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.sidebar_black_3605 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .sidebar_black_3605 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar_black_3605 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.medium_bc1f {
    margin-bottom: 1rem;
}

.media-cold-2dee img {
    margin-bottom: 1rem;
}

.lite-bfc8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-plasma-9399 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.old-ec0d {
    list-style: none;
}

.old-ec0d li {
    margin-bottom: 0.5rem;
}

.old-ec0d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.old-ec0d a:hover {
    color: var(--accent-color);
}

.texture-fa64 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-0a7e {
    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);
}

.avatar-0a7e:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.layout-e48b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.layout-e48b p {
    margin-bottom: 0.25rem;
}

.selected_9e22 {
    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) {
    .selected_9e22 {
        flex-direction: row;
    }
}

.image_020b {
    text-align: center;
}

@media (min-width: 768px) {
    .image_020b {
        text-align: left;
    }
}

.image_020b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-warm-5e3b {
    font-size: 0.75rem !important;
}

.detail-b560 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-gold-7e54 {
    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);
    }
}

.feature_next_257e {
    animation: fadeInUp 0.6s ease-out;
}

.lower-4fe0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tiny-a04b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-a04b {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.sort-703f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-703f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-east-5673 {
    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);
}

.dropdown-east-5673 .picture_e94e {
    font-size: 1.25rem;
}

.dropdown-east-5673 .message-west-6c26 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.simple-c431 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-c431 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-copper-4f07 {
    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);
}

.tertiary-copper-4f07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim-b1fb {
    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);
}

.over-c927 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active_plasma_62db {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-3904 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element-7cb4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.element-7cb4 .hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element-7cb4 .accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_b1bf {
    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);
}

.outer_0bfc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.outer_0bfc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.outer_0bfc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.texture-orange-9c4f {
    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);
}

.heading-purple-16c4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected_6eb9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selected_6eb9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected_6eb9 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);
}

.selected_6eb9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.selected_6eb9 input::placeholder {
    color: var(--text-muted);
}

.pattern_current_12f6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.west_2e65 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.west_2e65 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.copper_ecc5 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.copper_ecc5:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tertiary_light_b16f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_light_b16f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-5f8f {
    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);
}

.avatar-5f8f .row_bfdd {
    font-size: 1.25rem;
}

.avatar-5f8f .inner-35ad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gradient_dc65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_plasma_77c5 {
    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);
}

.texture_plasma_77c5 .picture_e94e {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_plasma_77c5 .hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_plasma_77c5 .accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_last_e17a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean_d1c4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.clean_d1c4 .primary_pink_449f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.clean_d1c4 .secondary_beec {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-1b73 {
    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);
}

.icon_gas_25d5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_gas_25d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow_0d0b {
    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);
}

.slow_0d0b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-f9a4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lite-ca09 {
    flex: 1;
}

.gallery_4222 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb-prev-6acd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card_f8dd {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.card_f8dd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.bottom-c3a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-c3a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower-17e8 {
    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);
}

.lower-17e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_paper_3576 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-a22c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.frame_left_f35c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.grid_smooth_449c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.card_narrow_9b6b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-7290 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_hot_3b1a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_hot_3b1a .mini-48eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip_hot_3b1a .tabs_wood_4c07 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-940d {
    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);
}

.input-thick-24d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-medium-47c6 {
    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);
}

.outline-medium-47c6 .picture_e94e {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-medium-47c6 .hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-medium-47c6 .accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh-049a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh-049a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-effa {
    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);
}

.box-effa:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.layout-eda9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-eda9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-f7f5 {
    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);
}

.breadcrumb-f7f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone-9415 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-thick-40ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev_3707 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.text-af2f {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.down-282c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-92b1 {
    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);
}

.current-92b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_tall_3434 {
    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);
}

.info_f2e1 {
    flex: 1;
}

.module_fluid_8ff4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tabs-2399 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.preview-f6d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-38e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_motion_4198 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_motion_4198 .primary_pink_449f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message_motion_4198 .secondary_beec {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-cool-6da3 {
    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);
}

.paragraph_hot_76e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_hot_76e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.title-slow-aa64 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-slow-aa64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_first_1d5c {
    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);
}

.row_first_1d5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot-2d66 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_acc8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.border_6bdd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside_8aab {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_a8c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-4409 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focused-36dd {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-9691 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected_8b5e {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-thick-24d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-medium-47c6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline-medium-47c6 .hard_6131 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline-medium-47c6 .accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-fresh-2d0f {
    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);
}

.old_f145 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_f145 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old_f145 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_inner_2267 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge_inner_2267:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_8429 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_2a09 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dirty_de41 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.mask_upper_a22b {
    padding: 1.5rem;
}

.filter-orange-8bba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.steel_92c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel_92c0 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;
}

.steel_92c0 li:last-child {
    border-bottom: none;
}

.steel_92c0 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.menu-over-3f31 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-over-3f31 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-c96e {
    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);
}

.outline-c96e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_41ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel-34e6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.smooth-f04c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion-3f86 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.solid-a930 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_steel_9803 {
    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);
}

.column-bronze-530e {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_6832 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short_3b41 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-full-2821 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid-6935 {
    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);
}

.footer_791e {
    text-align: center;
}

.green-1ceb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-eb3d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.short_dc6c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass-e8e9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass-e8e9 .hard_6131 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.glass-e8e9 .accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_thick_537a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_thick_537a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_thick_537a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-b6a3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-b6a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-fresh-68af {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.last-bd08 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hard_6131 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.row_east_bc25 {
    padding: 1.5rem;
}

.accordion_1544 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dim-93c9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dim-93c9 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;
}

.dim-93c9 li:last-child {
    border-bottom: none;
}

.dim-93c9 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.progress_small_8fd7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.first_e824 {
    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);
}

.first_e824:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel-yellow-d5cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-a117 {
    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);
}

.dim-b1fb {
    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;
}

.over-c927 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_plasma_62db {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_2a81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-0622 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.icon-hard-111e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-5813 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.panel_hard_28b2 {
    display: flex;
    gap: 1rem;
}

.panel_hard_28b2 .paper-3efc {
    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;
}

.paper-7da0 {
    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);
}

.fixed_f649 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.right-3cf8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-3cf8 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;
}

.right-3cf8 li:last-child {
    border-bottom: none;
}

.right-3cf8 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.slider-0a31 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slider-0a31 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider-0a31 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-f8c4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focused-f8c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_plasma_6d7f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_fast_dd44 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mini-48eb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.surface-pro-52fd {
    font-size: 1rem;
}

.aside_3756 {
    padding: 1.5rem;
}

.tabs_wood_4c07 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.button-9dfd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.button-9dfd .footer_791e {
    text-align: center;
}

.button-9dfd .dynamic-eb3d {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.button-9dfd .selected_08d2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo_1107 {
    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);
}

.logo_1107:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.red-c5a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-c5a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_dim_d78d {
    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);
}

.frame_dim_d78d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-c493 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_56b2 {
    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);
}

.chip-next-efa0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_bronze_dfc3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron_e36f {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-7ad8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.secondary_471f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_5317 {
    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);
}

.content-812a {
    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;
}

.content-812a.hot-f6ec {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.content-812a.wrapper_small_b1f5 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.content-812a.orange_219f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.content-812a.pagination-pressed-55e4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.content-812a.short-9688 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.last-98bb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_47cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-51b5 {
    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);
}

.modal-narrow-9dc2 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description_last_e17a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_last_e17a 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;
}

.description_last_e17a li:last-child {
    border-bottom: none;
}

.description_last_e17a li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.input-pro-fa76 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input-pro-fa76 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input-pro-fa76 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim-22aa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dim-22aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim-22aa.copper-c4fb {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .dim-22aa.copper-c4fb {
        grid-column: span 3;
    }
}

.link_e047 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.dim-22aa.copper-c4fb .link_e047 {
    background: rgba(6, 182, 212, 0.1);
}

.aside-0830 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.filter-4196 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.dim-22aa.copper-c4fb .filter-4196 {
    color: var(--info-color);
}

.breadcrumb_ae8b {
    padding: 1.5rem;
    text-align: center;
}

.aside-02e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dim-22aa.copper-c4fb .aside-02e5 {
    color: var(--info-color);
}

.article_black_044b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tabs_6fd6 {
    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 */
.table-3389 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-3389 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_over_d999 {
    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);
}

.breadcrumb_over_d999:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_light_147b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_plasma_77c5 {
    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);
}

.row_bfdd {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-purple-d9bb {
    flex: 1;
}

.outline_1700 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid-224d {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-center-e844 {
    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);
}

.description-1231 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_silver_dc27 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.banner-gold-7e54 {
    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);
}

.next-bdbc {
  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);
}

.next-bdbc .footer_791e {
    text-align: center;
}

.next-bdbc .green-1ceb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.next-bdbc .dynamic-eb3d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-4081 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-4330 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_static_1f11 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.brown_afb4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-ba5a {
    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);
}

.highlight-solid-06c4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status_68d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.white-1be2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .white-1be2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .white-1be2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_3a47 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid_3a47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_7968 {
    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);
}

.frame_3b19 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sort-09c1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dark_1a3e {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark_1a3e.overlay-6dbb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dark_1a3e.silver-e1dc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.dark_1a3e.banner_c93b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.main-d6b5 {
    padding: 1.5rem;
    text-align: center;
}

.component_69d8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plasma_9a6b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.plasma_9a6b .focus_dark_dcc2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.brown-e6ef {
    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);
}

.brown-e6ef:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hovered_e0c4 {
  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);
}

.logo-035c {
    text-align: center;
}

.logo-035c .green-1ceb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.logo-035c .dynamic-eb3d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.overlay_east_e157 { text-align: center; }
.status-gold-5504 { text-align: left; }
.button-fresh-c403 { text-align: right; }

.menu_60d8 { margin-bottom: 0; }
.message_a7b4 { margin-bottom: 0.5rem; }
.cool_efff { margin-bottom: 1rem; }
.overlay_bronze_1458 { margin-bottom: 1.5rem; }
.box-e84f { margin-bottom: 2rem; }

.modal_fixed_1946 { margin-top: 0; }
.border-147c { margin-top: 0.5rem; }
.shadow-liquid-0b8a { margin-top: 1rem; }
.status_3b80 { margin-top: 1.5rem; }
.link_1223 { margin-top: 2rem; }

.fn-hidden-2703 { display: none; }
.fn-visible-2703 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .pattern-84ce {
        padding: 6rem 0 3rem;
    }
    
    .shadow_lower_9f61 {
        text-align: center;
    }
    
    .panel_66d4 {
        text-align: center;
    }
    
    .breadcrumb_rough_e9eb {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .sidebar_ea26,
    .form_smooth_38fe,
    .active_hard_70ba,
    .slow-ddb2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .pattern-84ce {
        background: none;
    }
}

/* Providers Section */
.prev_c2d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_57d5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black_57d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_57d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_6c1a {
    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_6c1a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy_42db {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wrapper-0521 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cold-08bf {
    list-style: none;
    padding: 0;
}

.cold-08bf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.cold-08bf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.info_brown_67d5 {
    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);
}

.info_brown_67d5 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.steel-4d76 {
    padding: var(--section-padding);
}

.blue_8999 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_8999 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_affd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_affd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.iron_4260 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.thumbnail-36b9 {
    display: flex;
    flex-direction: column;
}

.upper_99c4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.heading-motion-4ebc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.input-wood-7177 {
    color: var(--accent-color);
}

.filter_action_397d {
    font-size: 1.25rem;
}

.secondary-next-0904 {
    margin-bottom: 1rem;
}

.secondary-next-0904 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.smooth-5f34 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dropdown-slow-617f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.footer_791e {
    text-align: center;
}

.green-1ceb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-eb3d {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.block-inner-a7ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_white_3bd2 {
    margin: 2rem 0;
}

.media_red_03eb {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.media_red_03eb .picture_e94e {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-liquid-4a69 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.active_9e16 {
    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;
}

.active_9e16:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown-huge-64ce {
    font-size: 2rem;
}

.list_ef87 {
    display: flex;
    flex-direction: column;
}

.simple-e4b5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.highlight_2399 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.hard_a4fd {
    padding: var(--section-padding);
}

.avatar-3392 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar-3392 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-3392 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-bronze-3845 {
    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);
}

.panel-bronze-3845:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.panel-bronze-3845 .green-1ceb {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.panel-bronze-3845 .dynamic-eb3d {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.panel-bronze-3845 .popup-cool-4728 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.image_red_2168 {
    margin-top: 4rem;
}

.block_5390 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.column-out-52e1 {
    overflow-x: auto;
}

.search_huge_a58b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.search_huge_a58b thead {
    background: var(--accent-color);
}

.search_huge_a58b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.search_huge_a58b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.search_huge_a58b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.search_huge_a58b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.label_hard_d5a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-c7ba {
    max-width: 900px;
    margin: 0 auto;
}

.grid-7ea4 {
    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);
}

.grid-7ea4:hover {
    border-color: var(--accent-color);
}

.cool_e616 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.cool_e616 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.focused-712d {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.grid-7ea4.fn-active-2703 .focused-712d {
    transform: rotate(45deg);
}

.info_fixed_4a89 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.grid-7ea4.fn-active-2703 .info_fixed_4a89 {
    max-height: 1000px;
}

.info_fixed_4a89 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tooltip-d53e {
    padding: var(--section-padding);
}

.outer_0bfc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.list-5b66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_9309 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_9309 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag_inner_b6a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-37c6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.notice-next-8f48 {
    font-size: 2rem;
}

.current-036e {
    color: var(--text-white);
    margin: 0;
}

.frame-cool-6abe {
    list-style: none;
    padding: 0;
}

.frame-cool-6abe li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-cool-6abe li:last-child {
    border-bottom: none;
}

.summary_263e {
    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);
}

.summary_263e p {
    color: var(--success-color);
    margin: 0;
}

.new-0fb0 {
    margin-top: 3rem;
}

.fixed_f649 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.progress_8429 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .progress_8429 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hover_5d9f {
    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);
}

.message-f7dc {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hover_5d9f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.iron-ab5a {
    padding: var(--section-padding);
}

.panel_white_5747 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_white_5747 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_614b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent_614b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.green-b4a8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tag_3566 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gradient_advanced_d4c4 {
    flex: 1;
}

.aside_lite_05d8 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.label_advanced_f443 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.hover_inner_e408 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_next_019c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper_next_019c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.widget-orange-e6d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.nav_1a92 {
    padding: var(--section-padding);
}

.secondary_1f50 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.search_1b89 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_1b89 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-95d2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_cool_6a38, .selected-c8fa, .widget-6aef {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.widget-6aef {
    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 */
.lite-4efd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_27f7 {
    margin: 2rem 0;
}

.paragraph-824c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_7f68 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.solid-0259 {
    list-style: none;
    padding: 0;
}

.solid-0259 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;
}

.solid-0259 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.solid-0259 li:last-child {
    border-bottom: none;
}

.article-solid-8ab6 {
    text-align: center;
    margin-top: 2rem;
}

.selected-77e3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.heading_cool_bd7d {
    padding: var(--section-padding);
}

.frame-ae9e {
    margin: 2rem 0;
}

.dropdown-under-c5f3 {
    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) {
    .dropdown-under-c5f3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dropdown-under-c5f3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.active_5931 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.pressed_2b41 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.east-490a {
    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;
}

.hard_0b20 {
    flex: 1;
}

.cold_419b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.card_cool_fe01 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dark_a8c0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.container-d3b5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .container-d3b5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.white-b9b8 {
    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);
}

.white-b9b8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.white-b9b8 .green-1ceb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white-b9b8 .dynamic-eb3d {
    color: var(--text-gray);
    font-size: 1rem;
}

.easy_1f68 {
    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);
}

.yellow-403b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.yellow-403b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.dynamic-8086 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .dynamic-8086 {
        grid-template-columns: 1fr 1fr;
    }
}

.container_6f7a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_6048 {
    margin-bottom: 1.5rem;
}

.soft_6048 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.soft_6048 input,
.soft_6048 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;
}

.soft_6048 input:focus,
.soft_6048 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.search_light_e8b3 {
    width: 100%;
    margin-top: 1rem;
}

.container-east-fc62 {
    display: flex;
    align-items: center;
}

.item_beca {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.hidden-slow-529c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.badge_right_2655 {
    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;
}

.carousel-pink-e269 {
    color: var(--text-gray);
}

.title-under-56fa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.complex_2542 {
    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);
}

.complex_2542 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.element-solid-8a98 {
    margin-top: 3rem;
}

.info-a821 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.plasma_e0cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-29f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.paragraph-6581 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph-6581:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.wrapper_4c3e {
    padding: var(--section-padding);
}

.slow_e150 {
    margin: 2rem 0;
}

.secondary_4a5d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.search-wide-9267 {
    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;
}

.search-wide-9267:hover, .search-wide-9267.fn-active-2703 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.sidebar_short_7595 {
    display: none;
}

.sidebar_short_7595.fn-active-2703 {
    display: block;
}

.photo_1174 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_c16e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout_hard_0984 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.layout_hard_0984 ul {
    list-style: none;
    padding: 0;
}

.layout_hard_0984 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.layout_hard_0984 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.element_69d4 {
    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 */
.active_64f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right-759c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-black-4c79 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shadow-advanced-f46e {
    color: var(--accent-color);
    margin: 0;
}

.hover_paper_1199 {
    display: flex;
    gap: 1.5rem;
}

.disabled_rough_8ca9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination-complex-df6b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.logo-fast-61e9 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo-fast-61e9.panel_ae80 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.logo-fast-61e9.info_95ef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.logo-fast-61e9.bottom-dbb1 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.overlay_4c29 {
    margin-top: 2rem;
}

.stale_7139 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.text-basic-5e0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .text-basic-5e0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_hard_2ebf {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.video_45b3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.block-d07b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.content-left-dfc5 {
    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 */
.hot_b86b {
    padding: var(--section-padding);
}

.outer-7e98 {
    margin: 2rem 0;
}

.pressed_217a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.sidebar-cb2f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.liquid-edbb {
    list-style: none;
    padding: 0;
}

.liquid-edbb 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;
}

.liquid-edbb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.liquid-edbb li:last-child {
    border-bottom: none;
}

.badge_bronze_ff86 {
    margin: 2rem 0;
}

.copper-078a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.chip_90ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .chip_90ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cool_ab9f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_cd55 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-fast-7ebd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.static_abe2 {
    margin-top: 2rem;
}

.gallery_4222 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thumbnail_stone_dc46 {
    list-style: none;
    padding: 0;
}

.tabs_c9d8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tabs_c9d8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tabs_c9d8 a:hover {
    text-decoration: underline;
}

.search-40a1 {
    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 */
.hidden_fast_5e63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-c54a {
    margin: 2rem 0;
}

.thick-7b98 {
    margin-bottom: 3rem;
}

.thick-7b98 .banner_7f68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.search-f7f3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.row-outer-cdfd {
    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);
}

.row-outer-cdfd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.chip_north_9ce9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .chip_north_9ce9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_9d51 {
    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 */
.sidebar_pressed_a64e {
    padding: var(--section-padding);
}

.dirty-5a68 {
    margin: 2rem 0;
}

.gallery-purple-5d06 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.table_3402 {
    overflow-x: auto;
    margin: 2rem 0;
}

.accent_over_6f69 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.thumbnail-soft-131d {
    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;
}

.tooltip_4d6c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.disabled_2dfa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .disabled_2dfa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-down-7113 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-down-7113 .picture_e94e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.widget-down-7113 .hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_5d73 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.summary_832f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_1e21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_1e21 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_fc09 {
    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;
}

.disabled_fc09:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.photo_230e {
    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);
}

.search_f605 {
    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;
}

.old-207c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade_upper_7181 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.element_b92e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tooltip_d0ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.soft_c6a0 {
    color: var(--text-white);
    font-weight: 600;
}

.shade_iron_8000 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight-up-3486 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-up-3486 .paper-3efc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shade_pink_3989 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_pink_3989 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_b89e {
    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);
}

.message_b89e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.message_b89e .green-1ceb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message_b89e .dynamic-eb3d {
    color: var(--text-gray);
    font-size: 1rem;
}

.filter-0178 {
    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);
}

.main_c35f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.main_c35f strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.row_a8c2 {
    margin: 2rem 0;
}

.gradient-4409 {
    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);
}

.gradient-4409:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.focused-36dd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accent_9c1a {
    flex: 1;
}

.slider-9691 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected_8b5e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.input-thick-24d5 {
    margin: 2rem 0;
}

.outline-medium-47c6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-medium-47c6 .hard_6131 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outline-medium-47c6 .accordion_1544 {
    color: var(--text-gray);
    margin: 0;
}

.tabs-fresh-2d0f {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tabs-fresh-2d0f .paragraph_iron_ecbd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.media_5d73 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.secondary_tall_3434 {
    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;
}

.info_f2e1 {
    flex: 1;
}

.tabs-2399 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.preview-f6d4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.dim-b1fb {
    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;
}

.shadow_9d4d {
    flex: 1;
}

.over-c927 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.active_plasma_62db {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.icon-hard-111e {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.sidebar-5813 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.panel_hard_28b2 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.panel_hard_28b2 .paper-3efc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paper-7da0 {
    margin-top: 2rem;
}

.paper-7da0 .fixed_f649 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.upper_b5b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-6935 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid-6935 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-6935 .footer_791e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_dc6c {
    margin: 2rem 0;
}

.glass-e8e9 {
    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 */
.article-b800 {
    padding: var(--section-padding);
}

.row_east_bc25 {
    margin-top: 1rem;
}

.dim-93c9 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.dim-93c9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.dim-93c9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hard_88de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-silver-1134 {
    margin: 2rem 0;
}

.panel-fd2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.image-ecda {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.easy_6af6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.brown-ec39 {
    margin: 2rem 0;
}

.section_d320 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.section_d320 .banner_7f68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-black-b18f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .picture-black-b18f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hot_725c {
    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);
}

.large-6cc3 {
    color: var(--text-white);
    font-weight: 600;
}

.caption-17f0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.section-8d53 {
    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);
}

.section-8d53 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.text-hovered-984c {
    padding: var(--section-padding);
}

.detail-stale-4263 {
    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;
}

.detail-stale-4263:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.heading-0d20 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.heading-0d20 .message-f7dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-0d20 .out-60d9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.photo-out-be22 {
    flex: 1;
}

.image_top_453d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.secondary-0401 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-0401 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.secondary-0401 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.rough-999d {
    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);
}

.rough-999d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough-999d strong {
    color: var(--warning-color);
}

/* Slots Section */
.sidebar-6cc0 {
    padding: var(--section-padding);
}

.card_narrow_9b6b {
    margin: 2rem 0;
}

/* Table Games Section */
.main_focused_29e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold-7290 {
    margin: 2rem 0;
}

.chip_hot_3b1a {
    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);
}

.chip_hot_3b1a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.chip_hot_3b1a .mini-48eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip_hot_3b1a .tabs_wood_4c07 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.component-940d {
    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);
}

.component-940d .paragraph_iron_ecbd {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.avatar-f9db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-3c4f {
    margin: 2rem 0;
}

.surface_bright_1872 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-9c1b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.right_a28d {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.complex_c4e1 {
    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);
}

.complex_c4e1:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.complex_c4e1.fn-active-2703 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider_2181 {
    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);
}

.small-8a42 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small-8a42 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.center-55e5 {
    padding: var(--section-padding);
}

.tag-glass-bd2c {
    margin: 2rem 0;
}

.filter-gas-14f4 {
    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);
}

.filter-gas-14f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .filter-gas-14f4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.logo-active-79f1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.active_pro_a908 {
    flex: 1;
}

.modal_old_e886 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup-77cf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notification_0e0f {
    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;
}

.old_4813 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary_14be {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.row-2ba0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.yellow-61ca {
    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;
}

.yellow-61ca:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.content-huge-1277 {
    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);
}

.progress_7cd3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.progress_7cd3 strong {
    color: var(--accent-color);
}

/* New Games Section */
.light_232c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-f4ae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gallery-f4ae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-f4ae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-complex-e85a {
    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;
}

.hero-complex-e85a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.south_6ee5 {
    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;
}

.gallery_d90f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.tiny_3c84 {
    font-size: 2rem;
}

.sidebar-66b2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.pattern_d877 {
    flex: 1;
}

.border-9f5d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.breadcrumb_bfaa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge_879f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery-pink-a257 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.main_d189 {
    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;
}

.shadow_19c3 {
    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;
}

.shadow_19c3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accent-3fb9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-1288 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_top_ce1a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .accordion_top_ce1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_ed7c {
    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);
}

.hero-cold-ee13 {
    color: var(--text-white);
    font-weight: 600;
}

.shade_warm_6973 {
    color: var(--accent-color);
    font-weight: 600;
}

.dark_8d8d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.dark_8d8d strong {
    color: var(--accent-color);
}

/* Security Section */
.image-bottom-3662 {
    padding: var(--section-padding);
}

/* Benefits Section */
.current-a034 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.grid_9630 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.fast_e58a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-stale-38cc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.breadcrumb-cf83 {
    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) {
    .breadcrumb-cf83 {
        flex-direction: column;
        gap: 1rem;
    }
}

.breadcrumb-cf83:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.breadcrumb-cf83 .dim-b1fb {
    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;
}

.breadcrumb-cf83 .shadow_9d4d {
    flex: 1;
}

.breadcrumb-cf83 .over-c927 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.breadcrumb-cf83 .active_plasma_62db {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.form_05f9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_05f9 .outline_1700 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_05f9 .gradient_dc65 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_05f9 .gradient_dc65 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.form_05f9 .gradient_dc65 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hot-3e64 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.huge_d3ad {
    padding: var(--section-padding);
}

.component-hovered-5981 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .component-hovered-5981 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_cc08 {
    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);
}

.short_cc08:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.short_cc08 .upper-8092 {
    font-size: 2rem;
    flex-shrink: 0;
}

.short_cc08 .slider-inner-906a {
    flex: 1;
}

.short_cc08 .primary_pink_449f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short_cc08 .stone-853c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.row_6237 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_6237 .section-d664 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_6237 .hover-purple-7e02 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.row_6237 .hover-purple-7e02 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);
}

.row_6237 .hover-purple-7e02 li:last-child {
    border-bottom: none;
}

.row_6237 .hover-purple-7e02 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;
}

.row_6237 .hover-purple-7e02 li strong {
    color: var(--text-white);
}

.notification-2457 {
    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);
}

.notification-2457 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-2457 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hero_red_e9b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim-c5c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dim-c5c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-narrow-1b4a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media-narrow-1b4a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.texture_11d8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-center-8c68 {
    font-size: 2rem;
}

.filter_bb54 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.badge-over-bd32 {
    flex: 1;
}

.mask-83fb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-83fb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mask-83fb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.box_96d3 {
    margin-top: 3rem;
}

.pressed_217a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar-cb2f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid-edbb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.liquid-edbb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.liquid-edbb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.liquid-edbb li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.element_9fec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_pink_93f9 {
    margin: 2rem 0;
}

.border_soft_d033 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.border_soft_d033 .banner_7f68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid-glass-1795 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-glass-1795 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.upper-bbc9 {
    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);
}

.upper-bbc9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.next_2e3c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mini_fc0b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.nav_bright_4a1a {
    padding: var(--section-padding);
}

.notice_5ed5 {
    margin: 2rem 0;
}

.slider_96c0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .slider_96c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_96c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_e02c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pattern_e02c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element_62c3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gas-ec6a {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.wrapper_large_ca4c {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper_large_ca4c.card-east-4411 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.active_5129 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.table_cool_735e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.list_plasma_4871 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_1c27 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge_slow_bdbc {
    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);
}

.badge_slow_bdbc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.badge_slow_bdbc strong {
    color: var(--accent-color);
}

/* Update Log Section */
.detail-96cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_2f40 {
    margin: 2rem 0;
}

.clean_005a {
    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) {
    .clean_005a {
        flex-direction: column;
        gap: 1rem;
    }
}

.clean_005a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.clean_005a::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);
}

.hovered_5f52 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.stale_8533 {
    flex: 1;
}

.banner-9ee5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.action_361e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action_361e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item_south_d104 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-3aab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-bronze-7ead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container-bronze-7ead {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-9d46 {
    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);
}

.fast-dbf6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gallery-dd34 {
    flex: 1;
}

.sidebar-current-89ad {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.alert_6321 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.panel-f9c9 {
    margin-top: 2rem;
    text-align: center;
}

.gallery-current-7c51 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery-current-7c51 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.red-c5a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-c5a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_dim_d78d {
    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);
}

.frame_dim_d78d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.frame_dim_d78d .tall_41ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_dim_d78d .panel-34e6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.frame_dim_d78d .smooth-f04c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.frame_dim_d78d .accordion-3f86 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.logo-c339 {
    padding: var(--section-padding);
}

.notification_56b2 .hover-steel-943a {
    flex: 1;
}

/* Promo Calendar Section */
.caption_full_8262 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-hovered-4fa3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-hovered-4fa3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_8ad1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-e37c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.item-6709 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.background-out-0f05 {
    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);
}

.shadow-8958 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.message-right-aadc {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thumbnail_2612 {
    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_2612 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_2612 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.old_dddb {
    padding: var(--section-padding);
}

.border-solid-450c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border-solid-450c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary-5a62 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-over-5fc9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.last_966f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.last_966f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.table_easy_2222 {
    margin-top: 3rem;
}

.table_easy_2222 .pressed_217a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.table_easy_2222 .sidebar-cb2f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_easy_2222 .liquid-edbb {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.table_easy_2222 .liquid-edbb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.table_easy_2222 .liquid-edbb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.table_easy_2222 .liquid-edbb li strong {
    color: var(--warning-color);
}

.shade_a978 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_a978 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.badge_7e0c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-f6ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-f6ab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_2d18 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron_2d18 .banner_7f68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.backdrop-fast-d694 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.basic-343f {
    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);
}

.basic-343f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tag-e669 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_silver_bc9e {
    flex: 1;
}

.header-fd6b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.card-new-08e0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.description_f94d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.summary_e9ce {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.silver_47d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .silver_47d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_4c96 {
    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);
}

.small_4c96:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-tiny-894e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component_b18c {
    color: var(--text-gray);
    font-size: 1rem;
}

.yellow-403b {
    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);
}

.alert-9f41 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.alert-9f41 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.video-c827 { 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; }
.clean-d1f4, .lite_6347 { max-width:100%; height:auto; }

.paragraph_6de4, .element_dynamic_180d, .clean-f5ff { white-space:normal; }

.shadow_lower_9f61,
.panel_66d4,
.table-3389,
.red-c5a0,
.input-thick-24d5,
.white-1be2 {
  flex-wrap:wrap;
}

[class*="grid"],
.silver_47d4,
.slider_96c0,
.focus_d88b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.pattern-84ce img,
.panel_66d4 img,
.down_60f8 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gradient-590c, .info-d3b7,
.form_brown_b2ce, .video_center_60f2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.column-out-52e1 { width:100%; overflow-x:auto; }
.column-out-52e1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.black_57d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .black_57d5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.dropdown_6c1a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.avatar-3392,
.notification-cool-ee98,
.item_85e2,
.filter-brown-a24a,
.container-d3b5,
.silver_47d4,
.slider_96c0,
.focus_d88b,
.hovered_e0c4,
.tag-glass-bd2c,
.black_57d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .avatar-3392,
  .notification-cool-ee98,
  .item_85e2,
  .filter-brown-a24a,
  .container-d3b5,
  .silver_47d4,
  .slider_96c0,
  .focus_d88b,
  .hovered_e0c4,
  .tag-glass-bd2c,
  .black_57d5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.panel-bronze-3845,
.white-b9b8,
.small_4c96,
.lower_5c04,
.pattern_e02c,
.logo-035c,
.filter-gas-14f4,
.dropdown_6c1a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.photo-center-7c46,
.clean_cb90,
.outline_0cd5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.photo-center-7c46 > *,
.clean_cb90 > *,
.outline_0cd5 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6dae */
.promo-block-t8 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
