/* {$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;
}

.link_c81e {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.chip-8df6 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .chip-8df6 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .chip-8df6 {
        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 */
.popup_west_ba26 {
    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);
}

.alert_up_49ff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .alert_up_49ff {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .section-wide-d844 {
        grid-column: 1;
    }
    
    .lower_ab6d {
        grid-column: 2;
    }
    
    .basic_1485 {
        grid-column: 3;
    }
}

.section-wide-d844 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.section-wide-d844:hover img {
    transform: scale(1.05);
}

/* Navigation */
.right_9387 {
    display: none;
}

@media (min-width: 1024px) {
    .right_9387 {
        display: block;
    }
}

/* Grouped Navigation */
.stone_498f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tall-2758 {
    position: relative;
}

.popup-1a5b {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tall-2758 .gallery-last-b5ac {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.gallery-last-b5ac {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid-8fef {
    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;
}

.grid-8fef:hover,
.grid-8fef.fn-active-6f3b {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.easy-dbb1 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .easy-dbb1 {
        display: flex;
    }
}

/* Mobile Register Button */
.lower_ab6d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .lower_ab6d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.button_first_9039 {
    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;
}

.button_first_9039::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.basic_1485 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .basic_1485 {
        display: none;
    }
}

.basic_1485 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.basic_1485.fn-active-6f3b span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.basic_1485.fn-active-6f3b span:nth-child(2) {
    opacity: 0;
}

.basic_1485.fn-active-6f3b span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.shadow_easy_a79f {
    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;
}

.shadow_easy_a79f.fn-active-6f3b {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.feature-yellow-92fd {
    overflow: hidden;
}

.row-86b7 {
    list-style: none;
    padding: 0.75rem 0;
}

.light-f5da {
    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;
}

.light-f5da:hover,
.light-f5da.fn-active-6f3b {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.light-f5da.gradient_9071 {
    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;
}

.light-f5da.gradient_9071::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 */
.list-next-629a {
    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;
}

.status_cafa {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.status_cafa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.carousel-smooth-b6e9 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.carousel-smooth-b6e9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.widget-pressed-cfeb {
    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;
}

.widget-pressed-cfeb:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.focus_fluid_4477 {
    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;
}

.hidden-current-0663 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hidden-current-0663:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tall-6169 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tall-6169:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.box_290e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.box_290e: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);
}

.video-brown-023b {
    font-size: 1em;
    font-weight: 700;
}

.paragraph_0619 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.first-a724 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.first-a724::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;
}

.summary-hard-e865 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .summary-hard-e865 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.advanced_51d5 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.element_9c79 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.nav-1984 {
    margin-bottom: 2rem;
}

.breadcrumb-4889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .breadcrumb-4889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-6438 {
    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);
}

.pro-b5ad {
    font-size: 1.5rem;
}

.down-3665 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hidden_narrow_a5b6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip-large-30b5 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tooltip-large-30b5:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.black-05cd {
    text-align: center;
    margin-bottom: 3rem;
}

.avatar_3f5a {
    margin-bottom: 1rem;
}

.video-96e9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.description_e163 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .description_e163 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .description_e163.steel_5931 {
        direction: rtl;
    }
    
    .description_e163.steel_5931 > * {
        direction: ltr;
    }
}

.slow_2478 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.slow_2478:first-child {
    margin-top: 0;
}

.progress_gold_6e72 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-smooth-46b6 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.highlight-smooth-46b6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.accordion-mini-257a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-mini-257a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny-a588 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section-tiny-0c05 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.left-f2ca {
    list-style: none;
}

.left-f2ca li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.left-f2ca li:last-child {
    border-bottom: none;
}

/* Games Features */
.cool-a56d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.disabled-narrow-f358 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.block_current_f90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.preview-smooth-bf66 {
    margin: 2rem 0;
}

.focus-1a70 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.focused-4cf7 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.card-upper-2933 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.row_111a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.focus_b11a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_b11a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_2113 {
    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);
}

.wide_2113:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.green_b01e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.first-c396 {
    font-size: 1.5rem;
}

.tooltip_f83a {
    color: var(--accent-color);
    margin: 0;
}

.avatar-470f {
    list-style: none;
}

.avatar-470f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.avatar-470f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.content-6baa {
    margin: 2rem 0;
}

.item-1d60 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fixed-61c5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fixed-61c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_db4e {
    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);
}

.column_advanced_6910 {
    font-size: 1.25rem;
}

.easy_1e91 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.thumbnail_69bf,
.video-tiny-36ca {
    text-align: center;
    margin: 2rem 0;
}

.caption-da97,
.orange-3288 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.item_cold_ab0f {
    margin: 2rem 0;
    text-align: center;
}

.hero-stone-2db0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-stone-2db0::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;
}

.slider_selected_d9d0 {
    position: relative;
    z-index: 1;
}

.old_5a44 {
    margin-bottom: 1rem;
}

.overlay_8efb {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.active-ce3b {
    margin-bottom: 3rem;
}

.table-8200 {
    margin-top: 3rem;
}

.chip-wood-594b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .chip-wood-594b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-wood-594b .banner-6438 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cold_7253 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bright-a8b8 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.gallery-7e0e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.gradient-slow-53fa {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .gradient-slow-53fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-slow-53fa {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notice_0dee {
    margin-bottom: 1rem;
}

.accent-a378 img {
    margin-bottom: 1rem;
}

.cool-6913 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_81b9 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notification_new_bd93 {
    list-style: none;
}

.notification_new_bd93 li {
    margin-bottom: 0.5rem;
}

.notification_new_bd93 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notification_new_bd93 a:hover {
    color: var(--accent-color);
}

.advanced-eb55 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.container_99d0 {
    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);
}

.container_99d0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.badge_148e {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.badge_148e p {
    margin-bottom: 0.25rem;
}

.article_f935 {
    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) {
    .article_f935 {
        flex-direction: row;
    }
}

.fluid_09f4 {
    text-align: center;
}

@media (min-width: 768px) {
    .fluid_09f4 {
        text-align: left;
    }
}

.fluid_09f4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section_e002 {
    font-size: 0.75rem !important;
}

.text_7121 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.border_f737 {
    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);
    }
}

.dropdown-126d {
    animation: fadeInUp 0.6s ease-out;
}

.lite_2039 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.solid-c8ae {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid-c8ae {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.stale_cc1d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_cc1d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_steel_09b0 {
    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);
}

.item_steel_09b0 .block_current_f90c {
    font-size: 1.25rem;
}

.item_steel_09b0 .notice-9ffc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pressed_c1ed {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed_c1ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_hovered_3e70 {
    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);
}

.icon_hovered_3e70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-5e6a {
    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);
}

.secondary-fresh-07dc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside_upper_ad38 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_basic_6c28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-light-c015 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info-light-c015 .widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-light-c015 .modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm_4097 {
    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);
}

.carousel-silver-b260 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.carousel-silver-b260 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel-silver-b260 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.menu_6775 {
    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);
}

.medium-2ca1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title_tiny_7d94 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title_tiny_7d94 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_tiny_7d94 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);
}

.title_tiny_7d94 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title_tiny_7d94 input::placeholder {
    color: var(--text-muted);
}

.title-under-c8aa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.notification-stale-b23e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.notification-stale-b23e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.panel_slow_9858 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.panel_slow_9858:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.fixed-61c5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-61c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_db4e {
    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);
}

.main_db4e .column_advanced_6910 {
    font-size: 1.25rem;
}

.main_db4e .easy_1e91 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.label-b2bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-f0c2 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-f0c2 .block_current_f90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-f0c2 .widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.photo-f0c2 .modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_50ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_4e73 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label_4e73 .silver-7830 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_4e73 .banner-9c30 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_b809 {
    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);
}

.steel-2cb8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .steel-2cb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright-aefa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.bright-aefa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-dda2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.selected_6262 {
    flex: 1;
}

.grid-medium-e47b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.button_48b6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary-dirty-61ee {
    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);
}

.summary-dirty-61ee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.upper-7e45 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-7e45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean_9deb {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.clean_9deb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_a49a {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-c804 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tertiary-solid-0e98 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside_0566 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_6c89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-next-3164 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-c5a9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module-c5a9 .bright-c23c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module-c5a9 .primary-34dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-yellow-ced2 {
    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);
}

.iron_1ca0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-291e {
    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);
}

.search-291e .block_current_f90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-291e .widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search-291e .modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_9686 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_9686 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_2c3f {
    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);
}

.plasma_2c3f:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.pink_7ab7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink_7ab7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_d317 {
    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);
}

.upper_d317:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-upper-44a6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused-e98f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused-4cf7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.frame_d8c2 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.accordion-83d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-stale-775b {
    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);
}

.logo-stale-775b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-short-81d2 {
    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);
}

.large_dd3d {
    flex: 1;
}

.chip-63d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.button_paper_c825 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.old_efe5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_b9fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-0539 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-0539 .silver-7830 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.down-0539 .banner-9c30 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-tiny-36ca {
    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);
}

.liquid_1bc0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_1bc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.inner_91b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .inner_91b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-6dcf {
    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);
}

.tertiary-6dcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-b6e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_48a0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element_5512 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card_pink_f963 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-lite-91e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-over-1b4c {
    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);
}

.preview-076b {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_a64e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.light_783e {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_1ca0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-291e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.search-291e .widget-focused-0678 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-291e .modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_7ce1 {
    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);
}

.focus_f9d4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus_f9d4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus_f9d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_narrow_c75d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_narrow_c75d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-c936 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bright-f66e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fixed-75e0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dim-b674 {
    padding: 1.5rem;
}

.selected_b710 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.avatar-solid-2b47 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-solid-2b47 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;
}

.avatar-solid-2b47 li:last-child {
    border-bottom: none;
}

.avatar-solid-2b47 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.action-c45c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-c45c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-fixed-974d {
    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);
}

.alert-fixed-974d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_8c08 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_fc23 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery_fa02 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status-slow-b3e9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hover_solid_b51b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-bef8 {
    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);
}

.backdrop-6ab1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_basic_3217 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_23c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_light_9a40 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down-a228 {
    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);
}

.column_9c37 {
    text-align: center;
}

.middle_e2f8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-bronze-8368 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wide-e1bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action-d2c3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-d2c3 .widget-focused-0678 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.action-d2c3 .modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_fc22 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_fc22 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_fc22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-basic-9098 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column-basic-9098:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_e730 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table-clean-6513 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget-focused-0678 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tag_top_f0bc {
    padding: 1.5rem;
}

.modal-8081 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-1f13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-1f13 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;
}

.panel-1f13 li:last-child {
    border-bottom: none;
}

.panel-1f13 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.detail-hovered-f163 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.bronze-78eb {
    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);
}

.bronze-78eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-7b25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_thick_9bcc {
    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);
}

.modal-5e6a {
    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;
}

.secondary-fresh-07dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.aside_upper_ad38 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_cd04 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_right_3243 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.header-c985 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-e5e2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.carousel_8f4d {
    display: flex;
    gap: 1rem;
}

.carousel_8f4d .widget-middle-e997 {
    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;
}

.search_south_41a3 {
    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);
}

.item_gas_3486 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.message_6468 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message_6468 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;
}

.message_6468 li:last-child {
    border-bottom: none;
}

.message_6468 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.active-0374 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active-0374 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-0374 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_2e1f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout_2e1f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-fluid-6412 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_solid_949c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bright-c23c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.active_4956 {
    font-size: 1rem;
}

.mini_eed0 {
    padding: 1.5rem;
}

.primary-34dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.heading-d187 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.heading-d187 .column_9c37 {
    text-align: center;
}

.heading-d187 .card-bronze-8368 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.heading-d187 .gradient_liquid_50e3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.stale_567a {
    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);
}

.stale_567a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.purple-b45a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple-b45a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_narrow_cac5 {
    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);
}

.hidden_narrow_cac5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu_dirty_19af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading-443d {
    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);
}

.content-slow-750a {
    font-size: 2rem;
    flex-shrink: 0;
}

.left-7cb4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green-f994 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium_6f7a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected_436b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh_a51b {
    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);
}

.primary_b3aa {
    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;
}

.primary_b3aa.content_out_885e {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.primary_b3aa.brown-732e {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.primary_b3aa.static_eabb {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.primary_b3aa.dim_c725 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.primary_b3aa.hero_south_49ca {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tertiary-ef59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_3cec {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-liquid-236b {
    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);
}

.gradient_hard_59d2 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus_50ee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_50ee 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;
}

.focus_50ee li:last-child {
    border-bottom: none;
}

.focus_50ee li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.icon-red-9cd3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon-red-9cd3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-red-9cd3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-last-03ee {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column-last-03ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-last-03ee.purple_6cdf {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .column-last-03ee.purple_6cdf {
        grid-column: span 3;
    }
}

.content-full-6d7c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.column-last-03ee.purple_6cdf .content-full-6d7c {
    background: rgba(6, 182, 212, 0.1);
}

.stale-8d35 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.copper-56e2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.column-last-03ee.purple_6cdf .copper-56e2 {
    color: var(--info-color);
}

.preview-cbba {
    padding: 1.5rem;
    text-align: center;
}

.notification-old-f973 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.column-last-03ee.purple_6cdf .notification-old-f973 {
    color: var(--info-color);
}

.bronze-7524 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.huge_03b6 {
    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 */
.chip-bright-0192 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-bright-0192 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_first_c287 {
    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);
}

.tertiary_first_c287:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-purple-2a97 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-f0c2 {
    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);
}

.column_advanced_6910 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-dim-5a2b {
    flex: 1;
}

.item-1d60 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list_2cac {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-cb2c {
    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);
}

.wide_5e8b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter_9cac {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.border_f737 {
    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);
}

.pagination-last-86d1 {
  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);
}

.pagination-last-86d1 .column_9c37 {
    text-align: center;
}

.pagination-last-86d1 .middle_e2f8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pagination-last-86d1 .card-bronze-8368 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next-87fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-tall-7837 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_bc39 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination-47fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_fresh_0d19 {
    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);
}

.summary-811e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_cef4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-bronze-4190 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-bronze-4190 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-bronze-4190 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_1ff9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pagination_1ff9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_blue_5bea {
    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);
}

.media_old_e3ac {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.photo_e413 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.surface_f246 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.surface_f246.button_723c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.surface_f246.accordion-solid-6d4d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.surface_f246.overlay-white-f7c4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.orange_c064 {
    padding: 1.5rem;
    text-align: center;
}

.pressed_5149 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.label-9e17 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label-9e17 .shade-iron-a4ff {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.prev_e18d {
    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);
}

.prev_e18d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active-5c2c {
  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);
}

.accent_ec2f {
    text-align: center;
}

.accent_ec2f .middle_e2f8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.accent_ec2f .card-bronze-8368 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.title-cool-a624 { text-align: center; }
.button_f2a9 { text-align: left; }
.item-up-a6cc { text-align: right; }

.text_44ac { margin-bottom: 0; }
.sort-white-f9e8 { margin-bottom: 0.5rem; }
.picture_top_0f13 { margin-bottom: 1rem; }
.widget-dc13 { margin-bottom: 1.5rem; }
.current_e795 { margin-bottom: 2rem; }

.lite_fca0 { margin-top: 0; }
.bronze_677d { margin-top: 0.5rem; }
.widget_1287 { margin-top: 1rem; }
.element-active-6d56 { margin-top: 1.5rem; }
.plasma-ac18 { margin-top: 2rem; }

.fn-hidden-6f3b { display: none; }
.fn-visible-6f3b { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .first-a724 {
        padding: 6rem 0 3rem;
    }
    
    .summary-hard-e865 {
        text-align: center;
    }
    
    .description_e163 {
        text-align: center;
    }
    
    .breadcrumb-4889 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .popup_west_ba26,
    .shadow_easy_a79f,
    .hero-stone-2db0,
    .gallery-7e0e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .first-a724 {
        background: none;
    }
}

/* Providers Section */
.item-active-4acb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_d296 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_d296 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_d296 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_tall_79f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_tall_79f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slow-805d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.over_9c6b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pattern_inner_a4d2 {
    list-style: none;
    padding: 0;
}

.pattern_inner_a4d2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pattern_inner_a4d2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.top-87fc {
    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);
}

.top-87fc p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.media-medium-3acc {
    padding: var(--section-padding);
}

.mask_3933 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_3933 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-5f43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.overlay-5f43:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mask-warm-f6ae {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.next-6248 {
    display: flex;
    flex-direction: column;
}

.outer-c3c3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stale_1312 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pink_bef4 {
    color: var(--accent-color);
}

.heading_284d {
    font-size: 1.25rem;
}

.backdrop-bf22 {
    margin-bottom: 1rem;
}

.backdrop-bf22 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.bronze_130a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.next_b90a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.column_9c37 {
    text-align: center;
}

.middle_e2f8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-bronze-8368 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.soft-efb5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-b5c8 {
    margin: 2rem 0;
}

.shade_f3a6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.shade_f3a6 .block_current_f90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination-3217 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.gallery_hard_dce0 {
    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;
}

.gallery_hard_dce0:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.north_41c6 {
    font-size: 2rem;
}

.border_focused_d65a {
    display: flex;
    flex-direction: column;
}

.top_343a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo-9575 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.surface_a373 {
    padding: var(--section-padding);
}

.under_6997 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .under_6997 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_6997 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under-cec5 {
    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);
}

.under-cec5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under-cec5 .middle_e2f8 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.under-cec5 .card-bronze-8368 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.under-cec5 .surface-dynamic-0cc5 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.yellow_2ed3 {
    margin-top: 4rem;
}

.wide-130c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.outline-solid-7de8 {
    overflow-x: auto;
}

.basic_e460 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.basic_e460 thead {
    background: var(--accent-color);
}

.basic_e460 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.basic_e460 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.basic_e460 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.basic_e460 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.progress_7990 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-5bcc {
    max-width: 900px;
    margin: 0 auto;
}

.tiny-c9b3 {
    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);
}

.tiny-c9b3:hover {
    border-color: var(--accent-color);
}

.focused-1481 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.focused-1481 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.heading-a4e9 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.tiny-c9b3.fn-active-6f3b .heading-a4e9 {
    transform: rotate(45deg);
}

.photo-73b3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.tiny-c9b3.fn-active-6f3b .photo-73b3 {
    max-height: 1000px;
}

.photo-73b3 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.footer_f6cb {
    padding: var(--section-padding);
}

.carousel-silver-b260 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.primary-down-1c76 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_left_21e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_left_21e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-advanced-33a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-ab32 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disabled_dark_9fe5 {
    font-size: 2rem;
}

.layout-e521 {
    color: var(--text-white);
    margin: 0;
}

.banner-d136 {
    list-style: none;
    padding: 0;
}

.banner-d136 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-d136 li:last-child {
    border-bottom: none;
}

.clean-fbcc {
    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);
}

.clean-fbcc p {
    color: var(--success-color);
    margin: 0;
}

.summary-bright-9a60 {
    margin-top: 3rem;
}

.item_gas_3486 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.secondary-dark-9509 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .secondary-dark-9509 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_easy_d058 {
    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);
}

.backdrop_5c6e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pagination_easy_d058 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.filter-yellow-01e3 {
    padding: var(--section-padding);
}

.column-active-fdd6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-active-fdd6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_b840 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_b840:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.component-d200 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video_large_d0ac {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gallery-9db5 {
    flex: 1;
}

.north_db79 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.card-short-520b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.search_13e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_f93b {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_f93b:last-child {
    border-bottom: none;
}

/* Comparison Section */
.fluid-f546 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.wrapper-stale-d9e7 {
    padding: var(--section-padding);
}

.form_light_6820 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.top_bf79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_bf79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-292d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-4964, .orange_9a33, .content-fast-158b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.content-fast-158b {
    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 */
.section_cold_a0e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_selected_13ef {
    margin: 2rem 0;
}

.pink-73d0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_selected_48b4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slider-easy-a1b4 {
    list-style: none;
    padding: 0;
}

.slider-easy-a1b4 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;
}

.slider-easy-a1b4 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.slider-easy-a1b4 li:last-child {
    border-bottom: none;
}

.preview_a8c1 {
    text-align: center;
    margin-top: 2rem;
}

.detail-new-a491 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.liquid_97cc {
    padding: var(--section-padding);
}

.hover_gas_ccac {
    margin: 2rem 0;
}

.media-84d0 {
    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) {
    .media-84d0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.media-84d0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accent-36cd {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.column-hovered-c09c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo_paper_cdcc {
    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;
}

.dim-56df {
    flex: 1;
}

.disabled_89a3 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.down-736d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.next-c99f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.left-f054 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .left-f054 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.surface-c2ac {
    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);
}

.surface-c2ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.surface-c2ac .middle_e2f8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface-c2ac .card-bronze-8368 {
    color: var(--text-gray);
    font-size: 1rem;
}

.slider_c2e5 {
    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);
}

.fluid-eec9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.fluid-eec9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.main_392a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .main_392a {
        grid-template-columns: 1fr 1fr;
    }
}

.table_83f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_4cfb {
    margin-bottom: 1.5rem;
}

.rough_4cfb label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rough_4cfb input,
.rough_4cfb 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;
}

.rough_4cfb input:focus,
.rough_4cfb select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title-red-b89a {
    width: 100%;
    margin-top: 1rem;
}

.list_in_6e63 {
    display: flex;
    align-items: center;
}

.pro_abfb {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.image-26af {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.overlay_2442 {
    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;
}

.element_under_fc12 {
    color: var(--text-gray);
}

.disabled-d0c4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.component_d4e0 {
    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);
}

.component_d4e0 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.list_hovered_064e {
    margin-top: 3rem;
}

.tertiary_0f19 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.search_right_d2bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-solid-bc92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.table_7b39 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_7b39:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.banner_d342 {
    padding: var(--section-padding);
}

.thick_f694 {
    margin: 2rem 0;
}

.section-17e3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thick-0f94 {
    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;
}

.thick-0f94:hover, .thick-0f94.fn-active-6f3b {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.mask-center-13c7 {
    display: none;
}

.mask-center-13c7.fn-active-6f3b {
    display: block;
}

.blue_94c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-6247 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture_4ed5 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.texture_4ed5 ul {
    list-style: none;
    padding: 0;
}

.texture_4ed5 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.texture_4ed5 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.over-e344 {
    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 */
.title-6c37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-80f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_complex_98a4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dirty_5772 {
    color: var(--accent-color);
    margin: 0;
}

.modal-glass-1902 {
    display: flex;
    gap: 1.5rem;
}

.wide_eff3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu_44b1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.lower_5d6b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.lower_5d6b.description-pink-2dec {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.lower_5d6b.nav-9605 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.lower_5d6b.article_758d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.thumbnail-down-1e66 {
    margin-top: 2rem;
}

.info_95e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info_full_fd85 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .info_full_fd85 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-full-5995 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tabs_active_2d04 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.backdrop-full-3575 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.pattern_south_5dfb {
    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 */
.highlight-steel-3d15 {
    padding: var(--section-padding);
}

.focus_down_5545 {
    margin: 2rem 0;
}

.form-wood-7d0f {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.footer-smooth-b334 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.shadow-e123 {
    list-style: none;
    padding: 0;
}

.shadow-e123 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;
}

.shadow-e123 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.shadow-e123 li:last-child {
    border-bottom: none;
}

.description-gold-590d {
    margin: 2rem 0;
}

.carousel-3e08 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline_0312 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_0312 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thumbnail-dddb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-bronze-5052 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo_57b5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.orange-4df7 {
    margin-top: 2rem;
}

.grid-medium-e47b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.outer_6125 {
    list-style: none;
    padding: 0;
}

.background-light-f1ce {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.background-light-f1ce a {
    color: var(--accent-color);
    text-decoration: none;
}

.background-light-f1ce a:hover {
    text-decoration: underline;
}

.blue_8220 {
    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 */
.form_6de1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_current_f5e4 {
    margin: 2rem 0;
}

.active_0bfa {
    margin-bottom: 3rem;
}

.active_0bfa .surface_selected_48b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input_781e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.title-8d59 {
    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);
}

.title-8d59:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.cold-1e7b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .cold-1e7b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-361a {
    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 */
.info_2c03 {
    padding: var(--section-padding);
}

.bright_b6ad {
    margin: 2rem 0;
}

.section-715d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.first-e73e {
    overflow-x: auto;
    margin: 2rem 0;
}

.overlay_3f00 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hard-5ab8 {
    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;
}

.bottom-9c35 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.green_c771 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .green_c771 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_da71 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper_da71 .block_current_f90c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.copper_da71 .widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-2397 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.logo_hovered_c45d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_narrow_4d20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_narrow_4d20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification-077c {
    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;
}

.notification-077c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.sort_thick_daba {
    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);
}

.hard-00ba {
    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;
}

.breadcrumb-31d2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.complex-cf72 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.widget-motion-6bb0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.outline-ebf0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.red-4e76 {
    color: var(--text-white);
    font-weight: 600;
}

.active-f88f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input_center_2f77 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input_center_2f77 .widget-middle-e997 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.text-large-3ee0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .text-large-3ee0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-f9b9 {
    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);
}

.popup-f9b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-f9b9 .middle_e2f8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-f9b9 .card-bronze-8368 {
    color: var(--text-gray);
    font-size: 1rem;
}

.silver-1a7f {
    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);
}

.slow_b779 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slow_b779 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.status-lite-91e6 {
    margin: 2rem 0;
}

.text-over-1b4c {
    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);
}

.text-over-1b4c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.preview-076b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-eb40 {
    flex: 1;
}

.paragraph_a64e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.light_783e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.iron_1ca0 {
    margin: 2rem 0;
}

.search-291e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-291e .widget-focused-0678 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.search-291e .modal-8081 {
    color: var(--text-gray);
    margin: 0;
}

.slider_7ce1 {
    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);
}

.slider_7ce1 .caption-da97 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.avatar-2397 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.container-short-81d2 {
    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;
}

.large_dd3d {
    flex: 1;
}

.button_paper_c825 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.old_efe5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.modal-5e6a {
    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;
}

.west_27ca {
    flex: 1;
}

.secondary-fresh-07dc {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.aside_upper_ad38 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.header-c985 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.accent-e5e2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.carousel_8f4d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel_8f4d .widget-middle-e997 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.search_south_41a3 {
    margin-top: 2rem;
}

.search_south_41a3 .item_gas_3486 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.yellow-8ad1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down-a228 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .down-a228 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-a228 .column_9c37 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-e1bd {
    margin: 2rem 0;
}

.action-d2c3 {
    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 */
.brown-6c30 {
    padding: var(--section-padding);
}

.tag_top_f0bc {
    margin-top: 1rem;
}

.panel-1f13 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.panel-1f13 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.panel-1f13 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.out_88c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-2541 {
    margin: 2rem 0;
}

.icon_8a2c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.shadow-0699 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nav_stone_cb64 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.image_small_012f {
    margin: 2rem 0;
}

.card-2213 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.card-2213 .surface_selected_48b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-upper-6986 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-upper-6986 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light-1fc7 {
    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);
}

.column-hot-0d91 {
    color: var(--text-white);
    font-weight: 600;
}

.middle_f43f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.under-b435 {
    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);
}

.under-b435 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.video-50d0 {
    padding: var(--section-padding);
}

.highlight_basic_979f {
    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;
}

.highlight_basic_979f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.lower_ddec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower_ddec .backdrop_5c6e {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_ddec .sidebar_f705 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.item_thick_0dbb {
    flex: 1;
}

.search_brown_e78f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card_d7ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card_d7ac li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.card_d7ac li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.smooth_a2e4 {
    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);
}

.smooth_a2e4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.smooth_a2e4 strong {
    color: var(--warning-color);
}

/* Slots Section */
.info-red-507e {
    padding: var(--section-padding);
}

.header_6c89 {
    margin: 2rem 0;
}

/* Table Games Section */
.gradient_5c7a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-next-3164 {
    margin: 2rem 0;
}

.module-c5a9 {
    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);
}

.module-c5a9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.module-c5a9 .bright-c23c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module-c5a9 .primary-34dd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.breadcrumb-yellow-ced2 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.breadcrumb-yellow-ced2 .caption-da97 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hot_ab60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_red_748b {
    margin: 2rem 0;
}

.hidden_copper_808e {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_0ea2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-old-3714 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.silver_a912 {
    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);
}

.silver_a912:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.silver_a912.fn-active-6f3b {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-c43d {
    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);
}

.frame_fluid_95f3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_fluid_95f3 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.paragraph_black_eefc {
    padding: var(--section-padding);
}

.filter-a40f {
    margin: 2rem 0;
}

.tertiary_current_bc67 {
    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);
}

.tertiary_current_bc67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tertiary_current_bc67 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.fresh_0d92 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.fluid-baa1 {
    flex: 1;
}

.sort_dim_2d05 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-new-550b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content-left-0801 {
    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;
}

.gas-bf82 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.active-center-fa63 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.clean-6baa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hard_b31d {
    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;
}

.hard_b31d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo-pro-9dc0 {
    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);
}

.detail_short_1679 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_short_1679 strong {
    color: var(--accent-color);
}

/* New Games Section */
.solid-25d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_7afb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .media_7afb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_7afb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-3d08 {
    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;
}

.table-3d08:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail-b85e {
    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;
}

.grid-small-1fc4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.overlay-hot-0d13 {
    font-size: 2rem;
}

.gold-f9bb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.logo-purple-1eaa {
    flex: 1;
}

.short-1541 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.info_smooth_cb0e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.out-b392 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dim_cfc9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hidden_glass_ff36 {
    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;
}

.dropdown_upper_b57b {
    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;
}

.dropdown_upper_b57b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shadow-6049 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-edab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row-copper-45eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .row-copper-45eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_5b42 {
    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);
}

.layout_inner_cf2e {
    color: var(--text-white);
    font-weight: 600;
}

.solid-af97 {
    color: var(--accent-color);
    font-weight: 600;
}

.top-1cf6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.top-1cf6 strong {
    color: var(--accent-color);
}

/* Security Section */
.section_3bdf {
    padding: var(--section-padding);
}

/* Benefits Section */
.carousel-west-fc8c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.border-362d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.feature-8719 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_glass_2451 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.surface_09a6 {
    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) {
    .surface_09a6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.surface_09a6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface_09a6 .modal-5e6a {
    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;
}

.surface_09a6 .west_27ca {
    flex: 1;
}

.surface_09a6 .secondary-fresh-07dc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.surface_09a6 .aside_upper_ad38 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outline_yellow_7cf9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_yellow_7cf9 .item-1d60 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_yellow_7cf9 .label-b2bc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_yellow_7cf9 .label-b2bc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outline_yellow_7cf9 .label-b2bc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.focus-d790 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.gallery-west-5909 {
    padding: var(--section-padding);
}

.hero-c991 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-c991 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-1365 {
    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);
}

.action-1365:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.action-1365 .tiny_6195 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-1365 .complex-1e7c {
    flex: 1;
}

.action-1365 .silver-7830 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action-1365 .image-5636 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.video-focused-98d9 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-focused-98d9 .green-3604 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video-focused-98d9 .tiny-f329 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.video-focused-98d9 .tiny-f329 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);
}

.video-focused-98d9 .tiny-f329 li:last-child {
    border-bottom: none;
}

.video-focused-98d9 .tiny-f329 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;
}

.video-focused-98d9 .tiny-f329 li strong {
    color: var(--text-white);
}

.header-right-f573 {
    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);
}

.header-right-f573 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-right-f573 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.icon_652b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-over-bc4a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-over-bc4a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.complex_c756 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex_c756:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pressed_be54 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box-44d1 {
    font-size: 2rem;
}

.thumbnail_08a7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.stale-166d {
    flex: 1;
}

.header_ca08 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_ca08 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header_ca08 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.full-bac5 {
    margin-top: 3rem;
}

.form-wood-7d0f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.footer-smooth-b334 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shadow-e123 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow-e123 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.shadow-e123 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.shadow-e123 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.nav_fbd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-83be {
    margin: 2rem 0;
}

.article-over-9417 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.article-over-9417 .surface_selected_48b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary-9fa9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary-9fa9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.heading_70ba {
    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);
}

.heading_70ba:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.section_current_183f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.button_static_6c61 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.fresh-c01d {
    padding: var(--section-padding);
}

.image_plasma_b4c2 {
    margin: 2rem 0;
}

.badge-da43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .badge-da43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge-da43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_mini_c24e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion_mini_c24e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.preview-3099 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.aside_in_a35f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.panel_4990 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.panel_4990.article-lower-8f5c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.outline_green_867d {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.top-229f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.widget_cbd9 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.medium-3115 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.up_c147 {
    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);
}

.up_c147 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.up_c147 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.title_hard_6e6c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_227f {
    margin: 2rem 0;
}

.section_7a19 {
    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) {
    .section_7a19 {
        flex-direction: column;
        gap: 1rem;
    }
}

.section_7a19:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.section_7a19::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);
}

.pattern_ffe2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.header-next-069b {
    flex: 1;
}

.list-outer-ef86 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout_d0c4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_d0c4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_358d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_smooth_f14f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_8e83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .south_8e83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-orange-7cdf {
    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);
}

.aside_smooth_58d7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content-f318 {
    flex: 1;
}

.wrapper-0185 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-2b59 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.container-0d58 {
    margin-top: 2rem;
    text-align: center;
}

.form_hard_b2d6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_hard_b2d6 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.purple-b45a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple-b45a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_narrow_cac5 {
    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);
}

.hidden_narrow_cac5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden_narrow_cac5 .notification_8c08 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_narrow_cac5 .component_fc23 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.hidden_narrow_cac5 .gallery_fa02 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.hidden_narrow_cac5 .status-slow-b3e9 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.module_84d0 {
    padding: var(--section-padding);
}

.heading-443d .header-9d6c {
    flex: 1;
}

/* Promo Calendar Section */
.huge-17dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_4769 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_4769 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-soft-ab15 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-5420 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.grid-stone-e0c0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article_out_4608 {
    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);
}

.highlight_cool_553f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-fluid-ef41 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.steel_4313 {
    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);
}

.steel_4313 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel_4313 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.label-6c4e {
    padding: var(--section-padding);
}

.notice_active_01b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notice_active_01b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thumbnail_plasma_88c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-2a05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro-149b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-149b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.link-c2ea {
    margin-top: 3rem;
}

.link-c2ea .form-wood-7d0f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.link-c2ea .footer-smooth-b334 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-c2ea .shadow-e123 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.link-c2ea .shadow-e123 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.link-c2ea .shadow-e123 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.link-c2ea .shadow-e123 li strong {
    color: var(--warning-color);
}

.label_soft_d4e8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.label_soft_d4e8 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.feature-wood-d06a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-0fdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-0fdf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-4dc0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-4dc0 .surface_selected_48b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.focus_easy_a1de {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_25e6 {
    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);
}

.content_25e6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hover-next-53d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-tiny-c7ab {
    flex: 1;
}

.shadow_dynamic_6910 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.clean-7241 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mini_a07d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.tabs-c3f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.heading-fb2f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .heading-fb2f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_fa8d {
    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);
}

.dynamic_fa8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_1622 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new-682b {
    color: var(--text-gray);
    font-size: 1rem;
}

.fluid-eec9 {
    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);
}

.nav_38dd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.nav_38dd strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.chip-8df6 { 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; }
.tooltip-large-30b5, .highlight-smooth-46b6 { max-width:100%; height:auto; }

.list-next-629a, .widget-pressed-cfeb, .focus_fluid_4477 { white-space:normal; }

.summary-hard-e865,
.description_e163,
.chip-bright-0192,
.purple-b45a,
.iron_1ca0,
.paragraph-bronze-4190 {
  flex-wrap:wrap;
}

[class*="grid"],
.heading-fb2f,
.badge-da43,
.chip-wood-594b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.first-a724 img,
.description_e163 img,
.hidden_narrow_a5b6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.advanced_51d5, .element_9c79,
.avatar_3f5a, .video-96e9 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.outline-solid-7de8 { width:100%; overflow-x:auto; }
.outline-solid-7de8 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.block_d296 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .block_d296 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.sort_tall_79f0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.under_6997,
.input-static-f9a2,
.background_a2ac,
.basic_0721,
.left-f054,
.heading-fb2f,
.badge-da43,
.chip-wood-594b,
.active-5c2c,
.filter-a40f,
.block_d296 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .under_6997,
  .input-static-f9a2,
  .background_a2ac,
  .basic_0721,
  .left-f054,
  .heading-fb2f,
  .badge-da43,
  .chip-wood-594b,
  .active-5c2c,
  .filter-a40f,
  .block_d296 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.under-cec5,
.surface-c2ac,
.dynamic_fa8d,
.banner-6438,
.accordion_mini_c24e,
.accent_ec2f,
.tertiary_current_bc67,
.sort_tall_79f0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.right-9363,
.center_a8ee,
.tall_f67f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.right-9363 > *,
.center_a8ee > *,
.tall_f67f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4fd7 */
.ghost-box-l4 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
