/* {$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;
}

.chip_a988 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.secondary-under-5da1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .secondary-under-5da1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .secondary-under-5da1 {
        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 */
.block-96ac {
    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);
}

.filter-right-b8a1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .filter-right-b8a1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .status-outer-2954 {
        grid-column: 1;
    }
    
    .narrow-b33c {
        grid-column: 2;
    }
    
    .steel-e35b {
        grid-column: 3;
    }
}

.status-outer-2954 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.status-outer-2954:hover img {
    transform: scale(1.05);
}

/* Navigation */
.pagination_fast_1797 {
    display: none;
}

@media (min-width: 1024px) {
    .pagination_fast_1797 {
        display: block;
    }
}

/* Grouped Navigation */
.pressed_ce17 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.narrow_9093 {
    position: relative;
}

.main_93e9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.narrow_9093 .logo_green_8a89 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.logo_green_8a89 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.overlay-prev-5b46 {
    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;
}

.overlay-prev-5b46:hover,
.overlay-prev-5b46.fn-active-b720 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.accordion-778c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .accordion-778c {
        display: flex;
    }
}

/* Mobile Register Button */
.narrow-b33c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .narrow-b33c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.motion_eae7 {
    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;
}

.motion_eae7::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 */
.steel-e35b {
    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) {
    .steel-e35b {
        display: none;
    }
}

.steel-e35b span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.steel-e35b.fn-active-b720 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.steel-e35b.fn-active-b720 span:nth-child(2) {
    opacity: 0;
}

.steel-e35b.fn-active-b720 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.iron_3b7e {
    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;
}

.iron_3b7e.fn-active-b720 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.label_7c82 {
    overflow: hidden;
}

.tall_33cb {
    list-style: none;
    padding: 0.75rem 0;
}

.disabled_7adc {
    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;
}

.disabled_7adc:hover,
.disabled_7adc.fn-active-b720 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.disabled_7adc.inner-6c6d {
    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;
}

.disabled_7adc.inner-6c6d::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 */
.orange-61c5 {
    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;
}

.purple-61c0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.purple-61c0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.box_a469 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.box_a469:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accordion_medium_6874 {
    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;
}

.accordion_medium_6874:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.top-3b22 {
    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;
}

.shadow-short-0be9 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.shadow-short-0be9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.status-west-d5c5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.status-west-d5c5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.tag-d406 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.tag-d406: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);
}

.hard_4e68 {
    font-size: 1em;
    font-weight: 700;
}

.grid_lower_3033 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.solid-3607 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.solid-3607::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;
}

.paper-e47a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .paper-e47a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.upper_dc69 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.prev-3aa0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shadow_5c7b {
    margin-bottom: 2rem;
}

.media_thick_8f66 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .media_thick_8f66 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-c2a3 {
    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);
}

.rough-25dd {
    font-size: 1.5rem;
}

.surface-new-ea07 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.notice-c763 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row_8bc5 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.row_8bc5:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.right_e93a {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-wood-6120 {
    margin-bottom: 1rem;
}

.icon_bronze_124c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tall_045d {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tall_045d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tall_045d.surface_ecb1 {
        direction: rtl;
    }
    
    .tall_045d.surface_ecb1 > * {
        direction: ltr;
    }
}

.tabs_orange_faa9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tabs_orange_faa9:first-child {
    margin-top: 0;
}

.list_warm_b786 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.progress-simple-31a9 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.progress-simple-31a9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.thumbnail-393a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-393a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-0ef4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pro-027b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tertiary-e233 {
    list-style: none;
}

.tertiary-e233 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary-e233 li:last-child {
    border-bottom: none;
}

/* Games Features */
.media-c6e5 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.icon_a897 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.element_motion_f543 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.sort_orange_8f71 {
    margin: 2rem 0;
}

.secondary_gold_61a2 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.panel_16c3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.logo-down-d261 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pink-3087 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.cool_4b7a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool_4b7a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-action-8986 {
    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);
}

.pagination-action-8986:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.caption-d360 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon-d437 {
    font-size: 1.5rem;
}

.slider-3c6f {
    color: var(--accent-color);
    margin: 0;
}

.fresh_7b83 {
    list-style: none;
}

.fresh_7b83 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.fresh_7b83 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.modal-d45d {
    margin: 2rem 0;
}

.carousel_03b0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.up-fe37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .up-fe37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-371f {
    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);
}

.label_copper_6347 {
    font-size: 1.25rem;
}

.table-e2ae {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.content_c245,
.active_0b65 {
    text-align: center;
    margin: 2rem 0;
}

.preview-bf01,
.container-3f90 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.gold_41f8 {
    margin: 2rem 0;
    text-align: center;
}

.static-92b4 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.static-92b4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.wide_95da {
    position: relative;
    z-index: 1;
}

.tabs-old-f00f {
    margin-bottom: 1rem;
}

.gallery-hard-7c4a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-c687 {
    margin-bottom: 3rem;
}

.message_4629 {
    margin-top: 3rem;
}

.gradient-up-14d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gradient-up-14d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-up-14d6 .message-c2a3 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.background_tiny_4932 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.purple-c744 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.motion_4b7f {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.brown_6f2d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .brown_6f2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown_6f2d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.text_huge_05d1 {
    margin-bottom: 1rem;
}

.main_up_bb43 img {
    margin-bottom: 1rem;
}

.input_selected_7d0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-8f79 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.disabled-52c2 {
    list-style: none;
}

.disabled-52c2 li {
    margin-bottom: 0.5rem;
}

.disabled-52c2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.disabled-52c2 a:hover {
    color: var(--accent-color);
}

.box_5f84 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.text-dynamic-b845 {
    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);
}

.text-dynamic-b845:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tertiary-purple-9de9 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tertiary-purple-9de9 p {
    margin-bottom: 0.25rem;
}

.picture_592c {
    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) {
    .picture_592c {
        flex-direction: row;
    }
}

.wood_67ef {
    text-align: center;
}

@media (min-width: 768px) {
    .wood_67ef {
        text-align: left;
    }
}

.wood_67ef p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_ce4a {
    font-size: 0.75rem !important;
}

.notice_middle_7834 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form_ae23 {
    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);
    }
}

.glass-dba9 {
    animation: fadeInUp 0.6s ease-out;
}

.module-1c0e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.accordion-focused-5a68 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-focused-5a68 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.wrapper-copper-3a05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-copper-3a05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-cbc1 {
    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);
}

.notification-cbc1 .element_motion_f543 {
    font-size: 1.25rem;
}

.notification-cbc1 .first_ebd3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tabs-hovered-2e5f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-hovered-2e5f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny_c32d {
    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);
}

.tiny_c32d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_cool_a5c8 {
    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);
}

.input_5fe2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gas_a77e {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_e42b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-wide-6237 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient-wide-6237 .component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient-wide-6237 .image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-active-d080 {
    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);
}

.hero_liquid_516f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hero_liquid_516f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hero_liquid_516f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.frame_fbaf {
    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);
}

.overlay-hard-1539 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected_5771 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selected_5771 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected_5771 input {
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.selected_5771 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.selected_5771 input::placeholder {
    color: var(--text-muted);
}

.menu_c262 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.item_smooth_659d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.item_smooth_659d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.avatar-dim-b8b8 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.avatar-dim-b8b8:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.up-fe37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up-fe37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-371f {
    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);
}

.liquid-371f .label_copper_6347 {
    font-size: 1.25rem;
}

.liquid-371f .table-e2ae {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.narrow_ae94 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green_515c {
    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);
}

.green_515c .element_motion_f543 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_515c .component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green_515c .image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_90d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-gas-d8f5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination-gas-d8f5 .modal_a236 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination-gas-d8f5 .backdrop_left_839a {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_hard_5c19 {
    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);
}

.hover-pink-908e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-pink-908e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-right-c4d5 {
    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);
}

.detail-right-c4d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_56c2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tiny_5799 {
    flex: 1;
}

.west-284a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-smooth-5736 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.carousel_wood_0c6f {
    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);
}

.carousel_wood_0c6f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.frame_red_b6dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_red_b6dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected_bfd0 {
    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);
}

.selected_bfd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_5ea0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-lower-52b4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.block_4917 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.secondary_next_650c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-c363 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-mini-c921 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-94cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-94cb .bright-a613 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.smooth-94cb .header-025e {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-13fa {
    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);
}

.notification_large_6f46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-7174 {
    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);
}

.notice-7174 .element_motion_f543 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-7174 .component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice-7174 .image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-b4e2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-b4e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-eb22 {
    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);
}

.fixed-eb22:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.tooltip_fluid_acfa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_fluid_acfa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_7b1a {
    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);
}

.green_7b1a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_6c17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-motion-7046 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.panel_16c3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.list-yellow-13d4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.footer-af89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple-7aaf {
    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);
}

.purple-7aaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.narrow-7995 {
    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);
}

.pressed_47cd {
    flex: 1;
}

.accent_steel_9064 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.slow_6274 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery-5f11 {
    color: var(--text-gray);
    line-height: 1.6;
}

.red-df4a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_15d6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_15d6 .modal_a236 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.texture_15d6 .backdrop_left_839a {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_0b65 {
    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);
}

.under-2d08 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-2d08 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.background_in_c13d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_in_c13d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_2224 {
    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);
}

.center_2224:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-hot-5649 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-6723 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused-15d5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.east_e40d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.picture_fd71 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-0801 {
    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);
}

.notice-30e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-stale-9743 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel-d13e {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_large_6f46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-7174 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.notice-7174 .component_e53e {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice-7174 .image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-9958 {
    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);
}

.wrapper_d013 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_d013 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_d013 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_bottom_4fc5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent_bottom_4fc5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_liquid_0769 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.frame-advanced-5b65 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media-hard-8fc1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.badge_08aa {
    padding: 1.5rem;
}

.message-088c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture-80fe {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-80fe 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;
}

.picture-80fe li:last-child {
    border-bottom: none;
}

.picture-80fe li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.slow_1c19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_1c19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_fast_f925 {
    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);
}

.carousel_fast_f925:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_hovered_cace {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_dirty_6091 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-d688 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav_fast_652b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.north_b8bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-tiny-95ba {
    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);
}

.stale_f9d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-269c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail-8043 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-0e8f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-6a07 {
    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);
}

.hero_bronze_b759 {
    text-align: center;
}

.detail_action_a500 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.button_8614 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-cool-9b59 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-cool-9b59 .component_e53e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs-cool-9b59 .image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-22d8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .plasma-22d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma-22d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_6046 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text_6046:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large-7ac4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.image_prev_f7c2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.component_e53e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cool-f395 {
    padding: 1.5rem;
}

.image_solid_8371 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro_6286 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro_6286 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;
}

.pro_6286 li:last-child {
    border-bottom: none;
}

.pro_6286 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.steel_5389 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sidebar-steel-9cd2 {
    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);
}

.sidebar-steel-9cd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-2574 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-3eae {
    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);
}

.status_cool_a5c8 {
    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;
}

.input_5fe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas_a77e {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_bcf8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze_922e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.column_95af {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_bottom_ac54 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.silver_9503 {
    display: flex;
    gap: 1rem;
}

.silver_9503 .yellow-5729 {
    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;
}

.up_b5a4 {
    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);
}

.current_fa7d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dim_e865 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dim_e865 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.dim_e865 li:last-child {
    border-bottom: none;
}

.dim_e865 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.row_blue_b901 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_blue_b901 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row_blue_b901 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_2748 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thick_2748:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_4d5c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slider-focused-eb84 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bright-a613 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.border_small_30ec {
    font-size: 1rem;
}

.modal-a883 {
    padding: 1.5rem;
}

.header-025e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.slow_c744 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.slow_c744 .hero_bronze_b759 {
    text-align: center;
}

.slow_c744 .frame-prev-8a7c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.slow_c744 .middle_214c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tertiary-5d64 {
    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);
}

.tertiary-5d64:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.cool-8b67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-8b67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-tall-f1aa {
    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);
}

.modal-tall-f1aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_liquid_4310 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action_3e72 {
    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);
}

.last-969c {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_f09d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_2b48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_55a9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.black-910a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new_0e7d {
    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);
}

.tertiary_c971 {
    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;
}

.tertiary_c971.blue-6846 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.tertiary_c971.popup-f4b4 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.tertiary_c971.grid-eefb {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.tertiary_c971.stale-59b1 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.tertiary_c971.alert-blue-e889 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.lower_2474 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_liquid_33d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-hard-2558 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-5476 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.slider_90d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_90d9 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;
}

.slider_90d9 li:last-child {
    border-bottom: none;
}

.slider_90d9 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.tabs_prev_c352 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs_prev_c352 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs_prev_c352 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_e50a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bright_e50a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright_e50a.background-pink-1c95 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .bright_e50a.background-pink-1c95 {
        grid-column: span 3;
    }
}

.tall-3d5c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.bright_e50a.background-pink-1c95 .tall-3d5c {
    background: rgba(6, 182, 212, 0.1);
}

.avatar_active_0834 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.form-54d0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.bright_e50a.background-pink-1c95 .form-54d0 {
    color: var(--info-color);
}

.container-55ad {
    padding: 1.5rem;
    text-align: center;
}

.paragraph-plasma-7ac0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bright_e50a.background-pink-1c95 .paragraph-plasma-7ac0 {
    color: var(--info-color);
}

.sort_bb2a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.accent-d98d {
    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 */
.upper-d4bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-d4bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_green_6c4b {
    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);
}

.menu_green_6c4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current_658d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green_515c {
    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);
}

.label_copper_6347 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_1f00 {
    flex: 1;
}

.carousel_03b0 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-white-fc78 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_south_2520 {
    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);
}

.background-9ffc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo-east-23cc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.form_ae23 {
    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);
}

.focus-motion-245f {
  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);
}

.focus-motion-245f .hero_bronze_b759 {
    text-align: center;
}

.focus-motion-245f .detail_action_a500 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.focus-motion-245f .frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.highlight-prev-8260 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-solid-30af {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-3cb4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark_45ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_tall_3218 {
    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);
}

.tertiary_32ba {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside_3723 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_92f6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title_92f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title_92f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-64c4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button-64c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-silver-9057 {
    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);
}

.grid-ce02 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.layout_499d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.logo_under_2860 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo_under_2860.black_4cdd {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.logo_under_2860.wood-b6d7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.logo_under_2860.shade-solid-b9a7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.module_9a1d {
    padding: 1.5rem;
    text-align: center;
}

.current_e5cd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-0c41 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.image-0c41 .advanced_8452 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.surface_copper_4e3a {
    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);
}

.surface_copper_4e3a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero_fcdf {
  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);
}

.large-628a {
    text-align: center;
}

.large-628a .detail_action_a500 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.large-628a .frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.dropdown_c856 { text-align: center; }
.copper_5c71 { text-align: left; }
.alert-left-40fc { text-align: right; }

.hard-4d6d { margin-bottom: 0; }
.wide-3df4 { margin-bottom: 0.5rem; }
.outline-4390 { margin-bottom: 1rem; }
.accent_short_e09c { margin-bottom: 1.5rem; }
.container-9119 { margin-bottom: 2rem; }

.notification_stale_5409 { margin-top: 0; }
.cold_241c { margin-top: 0.5rem; }
.hero-soft-bb2a { margin-top: 1rem; }
.red-4a58 { margin-top: 1.5rem; }
.banner_86fc { margin-top: 2rem; }

.fn-hidden-b720 { display: none; }
.fn-visible-b720 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .solid-3607 {
        padding: 6rem 0 3rem;
    }
    
    .paper-e47a {
        text-align: center;
    }
    
    .tall_045d {
        text-align: center;
    }
    
    .media_thick_8f66 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .block-96ac,
    .iron_3b7e,
    .static-92b4,
    .motion_4b7f {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .solid-3607 {
        background: none;
    }
}

/* Providers Section */
.backdrop-hovered-b1ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-ddbb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-ddbb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .header-ddbb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-a339 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid-a339:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.motion-eb59 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lower_02ed {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.top_7e15 {
    list-style: none;
    padding: 0;
}

.top_7e15 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.top_7e15 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.action_5b0c {
    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);
}

.action_5b0c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.footer-3999 {
    padding: var(--section-padding);
}

.lite-a0d7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-a0d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_0151 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pro_0151:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.media-motion-5daf {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.left-681d {
    display: flex;
    flex-direction: column;
}

.video_9589 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.brown_9c50 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.chip-4561 {
    color: var(--accent-color);
}

.mini-8992 {
    font-size: 1.25rem;
}

.progress-tall-bdc8 {
    margin-bottom: 1rem;
}

.progress-tall-bdc8 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.accordion_down_926c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.new_9f69 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hero_bronze_b759 {
    text-align: center;
}

.detail_action_a500 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.button_gold_3f98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_1aeb {
    margin: 2rem 0;
}

.modal_current_09ce {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.modal_current_09ce .element_motion_f543 {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_87e0 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.background-92a6 {
    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;
}

.background-92a6:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.plasma_6fc2 {
    font-size: 2rem;
}

.current_d38d {
    display: flex;
    flex-direction: column;
}

.slider_bd08 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bright_c3df {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.alert-outer-bb84 {
    padding: var(--section-padding);
}

.dirty_82e5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dirty_82e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty_82e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-923b {
    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);
}

.banner-923b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner-923b .detail_action_a500 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.banner-923b .frame-prev-8a7c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.banner-923b .south-a3aa {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.medium_14e2 {
    margin-top: 4rem;
}

.wood-167e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.gradient-static-a547 {
    overflow-x: auto;
}

.grid-40ba {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.grid-40ba thead {
    background: var(--accent-color);
}

.grid-40ba th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.grid-40ba td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-40ba tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.grid-40ba tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hidden_2ee2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_98bc {
    max-width: 900px;
    margin: 0 auto;
}

.backdrop_motion_4913 {
    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);
}

.backdrop_motion_4913:hover {
    border-color: var(--accent-color);
}

.top-957c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.top-957c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.badge_f712 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.backdrop_motion_4913.fn-active-b720 .badge_f712 {
    transform: rotate(45deg);
}

.iron_6b07 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.backdrop_motion_4913.fn-active-b720 .iron_6b07 {
    max-height: 1000px;
}

.iron_6b07 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.article_4a01 {
    padding: var(--section-padding);
}

.hero_liquid_516f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.middle_e05d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_outer_c63e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_outer_c63e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action_281f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_liquid_c5ab {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dark_5064 {
    font-size: 2rem;
}

.shade_830a {
    color: var(--text-white);
    margin: 0;
}

.banner_stone_7983 {
    list-style: none;
    padding: 0;
}

.banner_stone_7983 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_stone_7983 li:last-child {
    border-bottom: none;
}

.header-76a6 {
    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);
}

.header-76a6 p {
    color: var(--success-color);
    margin: 0;
}

.notification-short-d17e {
    margin-top: 3rem;
}

.current_fa7d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.notification-b965 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notification-b965 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight_0e47 {
    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);
}

.article_first_1fa6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight_0e47 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.heading_bec3 {
    padding: var(--section-padding);
}

.sidebar_6067 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_6067 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-30b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow-30b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tabs_first_b47a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.active-3e5a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_tiny_2f69 {
    flex: 1;
}

.border-ea46 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pattern_fast_dfad {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.cool-84a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-last-81c5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-last-81c5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.easy_c9b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tertiary-tiny-c9c6 {
    padding: var(--section-padding);
}

.new_1232 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.plasma_0e07 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_0e07 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-e0da {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black-9777, .text_small_825a, .tertiary_6014 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tertiary_6014 {
    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 */
.thick_b520 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_367c {
    margin: 2rem 0;
}

.lower_1c13 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-60ac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.label_9de5 {
    list-style: none;
    padding: 0;
}

.label_9de5 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;
}

.label_9de5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.label_9de5 li:last-child {
    border-bottom: none;
}

.shade_large_e80d {
    text-align: center;
    margin-top: 2rem;
}

.shadow_f922 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.summary_8249 {
    padding: var(--section-padding);
}

.outline_static_907d {
    margin: 2rem 0;
}

.orange_cbe7 {
    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) {
    .orange_cbe7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.orange_cbe7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool_6469 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.icon_72e5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.surface_red_c9ad {
    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;
}

.heading_action_0aaf {
    flex: 1;
}

.down-2a30 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.chip_1cc4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fluid-197e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.picture_704e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .picture_704e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sidebar-cold-a244 {
    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);
}

.sidebar-cold-a244:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar-cold-a244 .detail_action_a500 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-cold-a244 .frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 1rem;
}

.widget_9bf7 {
    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);
}

.down_5bc6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.down_5bc6 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.info_6dee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .info_6dee {
        grid-template-columns: 1fr 1fr;
    }
}

.rough_fc28 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last_e08b {
    margin-bottom: 1.5rem;
}

.last_e08b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.last_e08b input,
.last_e08b 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;
}

.last_e08b input:focus,
.last_e08b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.box_74eb {
    width: 100%;
    margin-top: 1rem;
}

.soft_3367 {
    display: flex;
    align-items: center;
}

.huge_70aa {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.thick_9db7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.texture-smooth-170a {
    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;
}

.full_327f {
    color: var(--text-gray);
}

.footer-fdc4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.shade-focused-a6cc {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning-color);
}

.shade-focused-a6cc p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.large_2933 {
    margin-top: 3rem;
}

.fast_35ba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.right-384b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_3e4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.list_bff5 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list_bff5:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tabs-7293 {
    padding: var(--section-padding);
}

.article-b81f {
    margin: 2rem 0;
}

.header_small_d4fc {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pattern-tiny-e84f {
    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;
}

.pattern-tiny-e84f:hover, .pattern-tiny-e84f.fn-active-b720 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.purple-cda3 {
    display: none;
}

.purple-cda3.fn-active-b720 {
    display: block;
}

.hovered_012f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple-e64c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.modal-green-7efc h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.modal-green-7efc ul {
    list-style: none;
    padding: 0;
}

.modal-green-7efc ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.modal-green-7efc ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.slider_slow_cacd {
    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 */
.hero_lower_d39c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-top-c0eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_black_a8df {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.photo_fast_1409 {
    color: var(--accent-color);
    margin: 0;
}

.container_50f9 {
    display: flex;
    gap: 1.5rem;
}

.modal-d850 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.panel-7f7d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.highlight_black_d1d4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight_black_d1d4.component_5fff {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.highlight_black_d1d4.clean-1e4b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.highlight_black_d1d4.layout_6588 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.item_d96d {
    margin-top: 2rem;
}

.image_pro_bbac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tabs_up_b768 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tabs_up_b768 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_9a4a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.hot-b6d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero_selected_b437 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.carousel_bright_b974 {
    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 */
.heading_current_3076 {
    padding: var(--section-padding);
}

.black_22aa {
    margin: 2rem 0;
}

.stale-0f01 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.widget-mini-48a3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.dropdown-1fd8 {
    list-style: none;
    padding: 0;
}

.dropdown-1fd8 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;
}

.dropdown-1fd8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.dropdown-1fd8 li:last-child {
    border-bottom: none;
}

.chip-gas-744c {
    margin: 2rem 0;
}

.list-5ee3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pagination_70ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination_70ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo-wood-c660 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_prev_f151 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.basic_d95c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.footer-3127 {
    margin-top: 2rem;
}

.west-284a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.element-slow-4f26 {
    list-style: none;
    padding: 0;
}

.item-0866 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.item-0866 a {
    color: var(--accent-color);
    text-decoration: none;
}

.item-0866 a:hover {
    text-decoration: underline;
}

.detail_b01c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.tabs_605f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-de11 {
    margin: 2rem 0;
}

.over_8083 {
    margin-bottom: 3rem;
}

.over_8083 .down-60ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active-tiny-557e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tooltip-e517 {
    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);
}

.tooltip-e517:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.mini_54fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mini_54fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_4f8d {
    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 */
.liquid-cc25 {
    padding: var(--section-padding);
}

.input_selected_bf26 {
    margin: 2rem 0;
}

.filter-3a3c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-orange-c92b {
    overflow-x: auto;
    margin: 2rem 0;
}

.hidden_742d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.lite_bf78 {
    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;
}

.image-a864 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.yellow_80d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .yellow_80d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_current_5cde {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_current_5cde .element_motion_f543 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.widget_current_5cde .component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-643b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.description_center_9914 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow_b9bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_b9bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-7bf3 {
    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;
}

.item-7bf3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.footer-narrow-fdde {
    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);
}

.prev-f027 {
    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;
}

.tall_9da1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview-solid-6b28 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.dark_e642 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.slow-ad32 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.out-3b68 {
    color: var(--text-white);
    font-weight: 600;
}

.paragraph_8dd5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow_fd9a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slow_fd9a .yellow-5729 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.outer-3e0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outer-3e0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_d93e {
    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_d93e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic_d93e .detail_action_a500 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic_d93e .frame-prev-8a7c {
    color: var(--text-gray);
    font-size: 1rem;
}

.card_e519 {
    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);
}

.caption_e611 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.caption_e611 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.picture_fd71 {
    margin: 2rem 0;
}

.north-0801 {
    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);
}

.north-0801:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notice-30e7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wide-08d1 {
    flex: 1;
}

.sidebar-stale-9743 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel-d13e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.notification_large_6f46 {
    margin: 2rem 0;
}

.notice-7174 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-7174 .component_e53e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.notice-7174 .image_solid_8371 {
    color: var(--text-gray);
    margin: 0;
}

.clean-9958 {
    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);
}

.clean-9958 .preview-bf01 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.dropdown-643b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.narrow-7995 {
    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;
}

.pressed_47cd {
    flex: 1;
}

.slow_6274 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.gallery-5f11 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.status_cool_a5c8 {
    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;
}

.active_bright_c793 {
    flex: 1;
}

.input_5fe2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gas_a77e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.column_95af {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pattern_bottom_ac54 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.silver_9503 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.silver_9503 .yellow-5729 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.up_b5a4 {
    margin-top: 2rem;
}

.up_b5a4 .current_fa7d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pro-27fc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-6a07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .column-6a07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-6a07 .hero_bronze_b759 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_8614 {
    margin: 2rem 0;
}

.tabs-cool-9b59 {
    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 */
.slider_hovered_6382 {
    padding: var(--section-padding);
}

.cool-f395 {
    margin-top: 1rem;
}

.pro_6286 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pro_6286 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pro_6286 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.action_e2f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_down_3137 {
    margin: 2rem 0;
}

.outline_a824 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.main-fluid-d6d7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.item-dim-5560 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.filter_e1b3 {
    margin: 2rem 0;
}

.form_slow_4801 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.form_slow_4801 .down-60ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary_basic_4e88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary_basic_4e88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface_large_7ffa {
    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);
}

.surface-dd77 {
    color: var(--text-white);
    font-weight: 600;
}

.fluid-08dc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hot_7689 {
    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);
}

.hot_7689 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.message_cold_7c9d {
    padding: var(--section-padding);
}

.column-in-fc6f {
    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;
}

.column-in-fc6f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.modal-4574 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-4574 .article_first_1fa6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-4574 .menu_copper_288a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.motion_3cbf {
    flex: 1;
}

.paragraph_6d45 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.table_slow_8d53 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_slow_8d53 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.table_slow_8d53 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.surface_down_e37b {
    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);
}

.surface_down_e37b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface_down_e37b strong {
    color: var(--warning-color);
}

/* Slots Section */
.heading_45b5 {
    padding: var(--section-padding);
}

.outline-c363 {
    margin: 2rem 0;
}

/* Table Games Section */
.video-stale-b0b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-mini-c921 {
    margin: 2rem 0;
}

.smooth-94cb {
    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);
}

.smooth-94cb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.smooth-94cb .bright-a613 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.smooth-94cb .header-025e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.bright-13fa {
    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);
}

.bright-13fa .preview-bf01 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.row_587b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-ebc1 {
    margin: 2rem 0;
}

.search-outer-69c3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_wood_e2e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_e3ee {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fast_dc30 {
    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);
}

.fast_dc30:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.fast_dc30.fn-active-b720 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood-bf13 {
    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);
}

.widget_fresh_bcdd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget_fresh_bcdd strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.huge_4125 {
    padding: var(--section-padding);
}

.heading_6e68 {
    margin: 2rem 0;
}

.wood_2d8f {
    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);
}

.wood_2d8f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .wood_2d8f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.title-stale-51d8 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.middle-1046 {
    flex: 1;
}

.filter-white-c305 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery_89ff {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.component-b98d {
    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;
}

.card-clean-9608 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dim_7caa {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info_old_b500 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny_a487 {
    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;
}

.tiny_a487:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.black-4292 {
    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);
}

.backdrop_light_194b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop_light_194b strong {
    color: var(--accent-color);
}

/* New Games Section */
.description_93e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_full_c3a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero_full_c3a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero_full_c3a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_prev_64a1 {
    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;
}

.focus_prev_64a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.old-129f {
    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;
}

.row-0d3e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.column_b4c3 {
    font-size: 2rem;
}

.simple-a305 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.prev-3698 {
    flex: 1;
}

.breadcrumb-brown-0c37 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.backdrop_bfca {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.widget-pressed-b553 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-4ac9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.advanced_efd0 {
    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;
}

.header_steel_ed73 {
    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;
}

.header_steel_ed73:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.bottom-0a2e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-2775 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_d78d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .preview_d78d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_b7ff {
    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);
}

.module-a1cf {
    color: var(--text-white);
    font-weight: 600;
}

.popup-9315 {
    color: var(--accent-color);
    font-weight: 600;
}

.chip-paper-50df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.chip-paper-50df strong {
    color: var(--accent-color);
}

/* Security Section */
.background-liquid-3c47 {
    padding: var(--section-padding);
}

/* Benefits Section */
.medium-c12e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.grid_huge_ea64 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.detail_9450 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-hovered-b2c2 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.bronze-e287 {
    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) {
    .bronze-e287 {
        flex-direction: column;
        gap: 1rem;
    }
}

.bronze-e287:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bronze-e287 .status_cool_a5c8 {
    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;
}

.bronze-e287 .active_bright_c793 {
    flex: 1;
}

.bronze-e287 .input_5fe2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bronze-e287 .gas_a77e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.video-3a89 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-3a89 .carousel_03b0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video-3a89 .narrow_ae94 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-3a89 .narrow_ae94 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video-3a89 .narrow_ae94 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.background_bronze_5273 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.hidden_fast_746a {
    padding: var(--section-padding);
}

.current-54a8 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .current-54a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-7f8c {
    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);
}

.east-7f8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.east-7f8c .media_first_b1bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-7f8c .info-bab3 {
    flex: 1;
}

.east-7f8c .modal_a236 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.east-7f8c .footer_solid_f329 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.steel_db53 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_db53 .icon_75b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.steel_db53 .photo-dynamic-cbd7 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.steel_db53 .photo-dynamic-cbd7 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);
}

.steel_db53 .photo-dynamic-cbd7 li:last-child {
    border-bottom: none;
}

.steel_db53 .photo-dynamic-cbd7 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;
}

.steel_db53 .photo-dynamic-cbd7 li strong {
    color: var(--text-white);
}

.banner_543c {
    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);
}

.banner_543c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner_543c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.media-af97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_narrow_a89d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search_narrow_a89d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion_short_4c8e {
    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_short_4c8e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fast_4cf8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.white_59b1 {
    font-size: 2rem;
}

.plasma_6442 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.action-8dd2 {
    flex: 1;
}

.element-small-ed6b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element-small-ed6b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.element-small-ed6b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wide-b9da {
    margin-top: 3rem;
}

.stale-0f01 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.widget-mini-48a3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-1fd8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-1fd8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dropdown-1fd8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dropdown-1fd8 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.column-fcc3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_fccd {
    margin: 2rem 0;
}

.layout-51b7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.layout-51b7 .down-60ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-82b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .item-82b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.white-e3f3 {
    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);
}

.white-e3f3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.next_de33 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel_plasma_7b03 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.panel-prev-47c9 {
    padding: var(--section-padding);
}

.static_7f08 {
    margin: 2rem 0;
}

.overlay-b6ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .overlay-b6ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay-b6ac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.new_f884 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new_f884:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.up_194a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.inner_0f69 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.video-fresh-e7b7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-fresh-e7b7.grid_lower_afc3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.panel_in_7b54 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.fixed-c03b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.logo-yellow-462e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom_8c68 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wrapper-91d5 {
    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);
}

.wrapper-91d5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper-91d5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.bronze-fe5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-pink-faf8 {
    margin: 2rem 0;
}

.tall-dfe5 {
    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) {
    .tall-dfe5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tall-dfe5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tall-dfe5::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);
}

.shadow-light-7c34 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.module-a87d {
    flex: 1;
}

.button-stone-c48f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outline_next_1445 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_next_1445 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_f0ef {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-next-dc56 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-0159 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-0159 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass-1879 {
    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);
}

.inner_ecd8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.grid-59de {
    flex: 1;
}

.tiny_a0f4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.message-dca3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo-993b {
    margin-top: 2rem;
    text-align: center;
}

.icon-static-27b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon-static-27b4 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.cool-8b67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-8b67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-tall-f1aa {
    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);
}

.modal-tall-f1aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal-tall-f1aa .logo_hovered_cace {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-tall-f1aa .section_dirty_6091 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.modal-tall-f1aa .detail-d688 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.modal-tall-f1aa .nav_fast_652b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.bottom-08cb {
    padding: var(--section-padding);
}

.action_3e72 .summary-5c3c {
    flex: 1;
}

/* Promo Calendar Section */
.hidden_stone_20c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_dirty_e919 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_dirty_e919 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up-047a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_old_4ba3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.backdrop-brown-b68f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-5d9d {
    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);
}

.sort_fixed_7e6c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-clean-c37d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.active_2749 {
    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);
}

.active_2749 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_2749 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.lower_564b {
    padding: var(--section-padding);
}

.top_a698 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .top_a698 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_black_b6b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_9b3a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_3302 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south_3302 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.status-a9ba {
    margin-top: 3rem;
}

.status-a9ba .stale-0f01 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.status-a9ba .widget-mini-48a3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status-a9ba .dropdown-1fd8 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.status-a9ba .dropdown-1fd8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.status-a9ba .dropdown-1fd8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.status-a9ba .dropdown-1fd8 li strong {
    color: var(--warning-color);
}

.pink_1d6e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pink_1d6e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.surface_97bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-plasma-1c72 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-plasma-1c72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-clean-a84f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-clean-a84f .down-60ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.advanced_1761 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carousel-small-5cb0 {
    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);
}

.carousel-small-5cb0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dropdown-pink-aefa {
    font-size: 2rem;
    flex-shrink: 0;
}

.over-79ee {
    flex: 1;
}

.sort-43c3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hidden_29e8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.container_new_d6b3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.component-1983 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal-steel-42c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .modal-steel-42c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_c07b {
    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);
}

.layout_c07b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout_fbcf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_north_f067 {
    color: var(--text-gray);
    font-size: 1rem;
}

.down_5bc6 {
    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);
}

.highlight-east-803e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight-east-803e strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.secondary-under-5da1 { 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; }
.row_8bc5, .progress-simple-31a9 { max-width:100%; height:auto; }

.orange-61c5, .accordion_medium_6874, .top-3b22 { white-space:normal; }

.paper-e47a,
.tall_045d,
.upper-d4bd,
.cool-8b67,
.notification_large_6f46,
.title_92f6 {
  flex-wrap:wrap;
}

[class*="grid"],
.modal-steel-42c3,
.overlay-b6ac,
.gradient-up-14d6 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.solid-3607 img,
.tall_045d img,
.notice-c763 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.upper_dc69, .prev-3aa0,
.panel-wood-6120, .icon_bronze_124c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.gradient-static-a547 { width:100%; overflow-x:auto; }
.gradient-static-a547 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.header-ddbb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .header-ddbb {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.grid-a339 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.dirty_82e5,
.stale_f62a,
.sidebar-glass-2a4b,
.title_dirty_e203,
.picture_704e,
.modal-steel-42c3,
.overlay-b6ac,
.gradient-up-14d6,
.hero_fcdf,
.heading_6e68,
.header-ddbb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .dirty_82e5,
  .stale_f62a,
  .sidebar-glass-2a4b,
  .title_dirty_e203,
  .picture_704e,
  .modal-steel-42c3,
  .overlay-b6ac,
  .gradient-up-14d6,
  .hero_fcdf,
  .heading_6e68,
  .header-ddbb {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.banner-923b,
.sidebar-cold-a244,
.layout_c07b,
.message-c2a3,
.new_f884,
.large-628a,
.wood_2d8f,
.grid-a339 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.outline_thick_5e7f,
.focus-plasma-9e04,
.slider-advanced-7716 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.outline_thick_5e7f > *,
.focus-plasma-9e04 > *,
.slider-advanced-7716 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1e5d */
.shadow-element-z0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
