/* {$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;
}

.sidebar-edcb {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.box_over_88a5 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .box_over_88a5 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .box_over_88a5 {
        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 */
.footer_16fa {
    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);
}

.notice_e227 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .notice_e227 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .fresh_b15b {
        grid-column: 1;
    }
    
    .liquid_3268 {
        grid-column: 2;
    }
    
    .fast_b2b0 {
        grid-column: 3;
    }
}

.fresh_b15b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.fresh_b15b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.over-9c53 {
    display: none;
}

@media (min-width: 1024px) {
    .over-9c53 {
        display: block;
    }
}

/* Grouped Navigation */
.form-lower-8922 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.rough-52a8 {
    position: relative;
}

.action_70f6 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.rough-52a8 .brown_41b7 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.brown_41b7 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.rough-dd6c {
    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;
}

.rough-dd6c:hover,
.rough-dd6c.fn-active-4c86 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.carousel_out_2202 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .carousel_out_2202 {
        display: flex;
    }
}

/* Mobile Register Button */
.liquid_3268 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .liquid_3268 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.soft_1029 {
    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;
}

.soft_1029::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 */
.fast_b2b0 {
    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) {
    .fast_b2b0 {
        display: none;
    }
}

.fast_b2b0 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.fast_b2b0.fn-active-4c86 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.fast_b2b0.fn-active-4c86 span:nth-child(2) {
    opacity: 0;
}

.fast_b2b0.fn-active-4c86 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.outer-fc6e {
    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;
}

.outer-fc6e.fn-active-4c86 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.large-1370 {
    overflow: hidden;
}

.black-4564 {
    list-style: none;
    padding: 0.75rem 0;
}

.layout_action_26a0 {
    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;
}

.layout_action_26a0:hover,
.layout_action_26a0.fn-active-4c86 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.layout_action_26a0.status-easy-9f06 {
    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;
}

.layout_action_26a0.status-easy-9f06::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 */
.element-selected-753f {
    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;
}

.fixed_aeb5 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.fixed_aeb5:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.surface_bronze_c5e7 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.surface_bronze_c5e7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.down_7808 {
    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;
}

.down_7808:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.brown-f469 {
    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;
}

.banner-6a2a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.banner-6a2a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.middle_8888 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.middle_8888:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focus_liquid_64e2 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focus_liquid_64e2: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);
}

.preview_steel_218e {
    font-size: 1em;
    font-weight: 700;
}

.caption-over-9b32 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.overlay_d962 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.overlay_d962::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;
}

.heading_e9e0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .heading_e9e0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.image-huge-6fed {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hovered_5e57 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.small-d2bc {
    margin-bottom: 2rem;
}

.paper_5911 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paper_5911 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-5b9e {
    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);
}

.overlay-ec43 {
    font-size: 1.5rem;
}

.text-3b86 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.border_bfe1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_hard_b7fd {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.content_hard_b7fd:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.motion_fba3 {
    text-align: center;
    margin-bottom: 3rem;
}

.layout-0f3f {
    margin-bottom: 1rem;
}

.feature_hovered_3fdb {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.border-black-f06c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .border-black-f06c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .border-black-f06c.pattern_7ca4 {
        direction: rtl;
    }
    
    .border-black-f06c.pattern_7ca4 > * {
        direction: ltr;
    }
}

.main_f3cb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.main_f3cb:first-child {
    margin-top: 0;
}

.highlight_last_4101 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.icon-0e84 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.icon-0e84:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.top-14b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-14b8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal_prev_76b0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.up-2cb6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline_c4a4 {
    list-style: none;
}

.outline_c4a4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline_c4a4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.fast_0bb1 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.input_0f67 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.logo-6fca {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.gradient-solid-4e89 {
    margin: 2rem 0;
}

.item-fast-30f9 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.description-2aab {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.rough-59e0 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.white-e755 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.left-4e67 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-4e67 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_4a35 {
    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);
}

.thumbnail_4a35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content_2051 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter-selected-f205 {
    font-size: 1.5rem;
}

.message-first-1432 {
    color: var(--accent-color);
    margin: 0;
}

.static-a295 {
    list-style: none;
}

.static-a295 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.static-a295 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.focused-68b7 {
    margin: 2rem 0;
}

.secondary-steel-badb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cool-ed27 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .cool-ed27 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_abd9 {
    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);
}

.thumbnail-dim-2e38 {
    font-size: 1.25rem;
}

.tag-over-0e48 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.motion_9319,
.green-0188 {
    text-align: center;
    margin: 2rem 0;
}

.label-dirty-f5cc,
.progress_9a66 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.logo_cfe3 {
    margin: 2rem 0;
    text-align: center;
}

.new-2980 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.new-2980::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;
}

.search_d1f1 {
    position: relative;
    z-index: 1;
}

.motion_3d66 {
    margin-bottom: 1rem;
}

.preview-hard-ecbc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.huge_cef3 {
    margin-bottom: 3rem;
}

.stone_7762 {
    margin-top: 3rem;
}

.slider_fast_423a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .slider_fast_423a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_fast_423a .east-5b9e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_blue_50cf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-cfe2 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.stale-d68b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.shadow_full_5f3e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .shadow_full_5f3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_full_5f3e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.east_1b8e {
    margin-bottom: 1rem;
}

.label_top_c70b img {
    margin-bottom: 1rem;
}

.shade-huge-e90f {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-0314 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tag-2113 {
    list-style: none;
}

.tag-2113 li {
    margin-bottom: 0.5rem;
}

.tag-2113 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tag-2113 a:hover {
    color: var(--accent-color);
}

.carousel-red-62bc {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.backdrop_gas_1507 {
    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);
}

.backdrop_gas_1507:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.disabled-bright-ed2d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.disabled-bright-ed2d p {
    margin-bottom: 0.25rem;
}

.text_first_3b54 {
    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) {
    .text_first_3b54 {
        flex-direction: row;
    }
}

.panel_pro_e546 {
    text-align: center;
}

@media (min-width: 768px) {
    .panel_pro_e546 {
        text-align: left;
    }
}

.panel_pro_e546 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion-03be {
    font-size: 0.75rem !important;
}

.tag-d389 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.glass_6cc0 {
    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);
    }
}

.notification-afed {
    animation: fadeInUp 0.6s ease-out;
}

.box_f370 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.clean-07ae {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean-07ae {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.gradient-52d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-52d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-0a51 {
    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);
}

.selected-0a51 .logo-6fca {
    font-size: 1.25rem;
}

.selected-0a51 .border-83cb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.picture-yellow-5a25 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-yellow-5a25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-7cda {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.slow-7cda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_e8f4 {
    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);
}

.bright_16b5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bronze_ddc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_f29e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_7d19 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_7d19 .hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled_7d19 .hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-b85a {
    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);
}

.caption-pressed-5cbd {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.caption-pressed-5cbd img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.caption-pressed-5cbd img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.content_7872 {
    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);
}

.notification_cold_7319 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.easy-d8c0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.easy-d8c0 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy-d8c0 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);
}

.easy-d8c0 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.easy-d8c0 input::placeholder {
    color: var(--text-muted);
}

.short-a9c2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.warm_3326 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.warm_3326 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.overlay_new_034b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.overlay_new_034b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.cool-ed27 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-ed27 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_abd9 {
    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);
}

.basic_abd9 .thumbnail-dim-2e38 {
    font-size: 1.25rem;
}

.basic_abd9 .tag-over-0e48 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.pagination-large-f02c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_cold_df1c {
    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);
}

.sort_cold_df1c .logo-6fca {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_cold_df1c .hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_cold_df1c .hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-2ffc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-b8b0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lite-b8b0 .gold_e6f5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lite-b8b0 .dropdown-7e2a {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-green-c2ab {
    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);
}

.gallery-dynamic-5229 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-dynamic-5229 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-de64 {
    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);
}

.tabs-de64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_medium_0f91 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.action_ed41 {
    flex: 1;
}

.aside_stale_8585 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.last-cee6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.purple-55f1 {
    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);
}

.purple-55f1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.new-1d97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new-1d97 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-hard-1119 {
    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);
}

.video-hard-1119:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_hot_1e74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-4d3a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.easy_6998 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask_out_2fff {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.card_liquid_e0a1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_6b08 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_ddc1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow_ddc1 .smooth_366a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow_ddc1 .dropdown_yellow_1c5f {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-0146 {
    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);
}

.gradient_77f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-8a1a {
    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);
}

.title-8a1a .logo-6fca {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-8a1a .hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-8a1a .hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_5daf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_5daf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_fast_8f21 {
    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);
}

.focus_fast_8f21:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.dirty_41ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty_41ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy-ca4a {
    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);
}

.easy-ca4a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu_focused_2665 {
    font-size: 2rem;
    flex-shrink: 0;
}

.white_4b8f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-2aab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.nav_hot_c774 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.selected-efac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_new_ffa8 {
    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);
}

.accordion_new_ffa8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot_bd37 {
    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);
}

.static_e303 {
    flex: 1;
}

.aside_22a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.popup_cb52 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.text-3aa7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-out-1af2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_bright_4d6b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_bright_4d6b .gold_e6f5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover_bright_4d6b .dropdown-7e2a {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-0188 {
    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);
}

.gradient_fast_7753 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_fast_7753 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.input_dim_dff3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_dim_dff3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-a102 {
    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);
}

.tall-a102:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_solid_a102 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-6bb2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption-124b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer-down-e2b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over-fada {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-3a0b {
    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);
}

.icon_1878 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_430f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up_bcae {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_77f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-8a1a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.title-8a1a .hover-a2ed {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title-8a1a .hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-5f4b {
    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);
}

.basic_df5e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic_df5e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic_df5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_5c05 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.label_5c05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_brown_574a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.heading-action-c294 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.light_9895 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.upper_4908 {
    padding: 1.5rem;
}

.avatar_bottom_7343 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logo-d85d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-d85d 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;
}

.logo-d85d li:last-child {
    border-bottom: none;
}

.logo-d85d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.message-hovered-f05d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-hovered-f05d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_f818 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard_f818:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_action_ebec {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic_bb1a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blue-a101 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.top_0e63 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.narrow-d8e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_bright_bf15 {
    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);
}

.title_91c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_3fec {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-1e00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_4d7d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.purple_1fc8 {
    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);
}

.icon_25c1 {
    text-align: center;
}

.highlight-selected-a985 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-slow-2dbf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-5b7f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-5b7f .hover-a2ed {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-5b7f .hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.north_e95a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .north_e95a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north_e95a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_6383 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status_6383:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-wood-6202 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form-hard-aab9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-a2ed {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.black_b939 {
    padding: 1.5rem;
}

.hard_04f9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer_dark_9531 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_dark_9531 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;
}

.footer_dark_9531 li:last-child {
    border-bottom: none;
}

.footer_dark_9531 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.wrapper-c915 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.new_7e00 {
    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);
}

.new_7e00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_08b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-iron-12a7 {
    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);
}

.tag_e8f4 {
    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;
}

.bright_16b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze_ddc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_2593 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_3638 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright-b4cb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow_dim_a13e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.search-e711 {
    display: flex;
    gap: 1rem;
}

.search-e711 .info-079e {
    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;
}

.column_8efb {
    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);
}

.module-fast-fe6f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container_eb6b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container_eb6b 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;
}

.container_eb6b li:last-child {
    border-bottom: none;
}

.container_eb6b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.component_rough_1266 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component_rough_1266 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component_rough_1266 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small-e5cc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.small-e5cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_e62d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_pink_f780 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.smooth_366a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.message-bronze-5554 {
    font-size: 1rem;
}

.plasma_3ce0 {
    padding: 1.5rem;
}

.dropdown_yellow_1c5f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.under-70e0 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.under-70e0 .icon_25c1 {
    text-align: center;
}

.under-70e0 .panel_wood_6ae4 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.under-70e0 .message_0981 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture-thick-3e7f {
    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);
}

.picture-thick-3e7f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.gallery_9886 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_9886 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-54b2 {
    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);
}

.dropdown-54b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-5b57 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_106a {
    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);
}

.full_cb1a {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-e96b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.red-d10b {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-1046 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_a87d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-in-980c {
    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);
}

.in_825b {
    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;
}

.in_825b.basic-7e70 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.in_825b.tooltip_yellow_87cc {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.in_825b.grid_c1c9 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.in_825b.module-dark-2826 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.in_825b.filter-new-ce31 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.outer-ee6b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold_284b {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-5f55 {
    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);
}

.old-03f9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.search-2ffc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-2ffc 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;
}

.search-2ffc li:last-child {
    border-bottom: none;
}

.search-2ffc li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.south-9b02 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .south-9b02 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-9b02 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-1d4b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.right-1d4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.right-1d4b.avatar-gold-3afa {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .right-1d4b.avatar-gold-3afa {
        grid-column: span 3;
    }
}

.main_top_2f06 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.right-1d4b.avatar-gold-3afa .main_top_2f06 {
    background: rgba(6, 182, 212, 0.1);
}

.wood_54f3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-2c2b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.right-1d4b.avatar-gold-3afa .info-2c2b {
    color: var(--info-color);
}

.logo_a346 {
    padding: 1.5rem;
    text-align: center;
}

.preview_solid_fcfd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.right-1d4b.avatar-gold-3afa .preview_solid_fcfd {
    color: var(--info-color);
}

.bright-320e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.box-slow-5a5d {
    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 */
.down-a1e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-a1e4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_cd0f {
    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);
}

.silver_cd0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_d046 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_cold_df1c {
    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);
}

.thumbnail-dim-2e38 {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected-a428 {
    flex: 1;
}

.secondary-steel-badb {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-active-2c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-ae6f {
    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);
}

.info-plasma-55ed {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.yellow_206b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.glass_6cc0 {
    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);
}

.north_0cdf {
  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);
}

.north_0cdf .icon_25c1 {
    text-align: center;
}

.north_0cdf .highlight-selected-a985 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.north_0cdf .panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert-df53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-in-a603 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_f7bf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.red_3850 {
    color: var(--text-gray);
    line-height: 1.6;
}

.top-cf20 {
    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);
}

.last-9a22 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-prev-7778 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_6cd8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_6cd8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_6cd8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-brown-f91e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column-brown-f91e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_4340 {
    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);
}

.hard_2ed8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.overlay_hard_c15a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.soft_46ea {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.soft_46ea.video-8d7f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.soft_46ea.modal_liquid_261d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.soft_46ea.accordion_dfc6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.prev_bad5 {
    padding: 1.5rem;
    text-align: center;
}

.selected_a30d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.under_2aa6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.under_2aa6 .slow_ca29 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.advanced-3f5c {
    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);
}

.advanced-3f5c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pink_fa14 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.liquid-eb20 {
    text-align: center;
}

.liquid-eb20 .highlight-selected-a985 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.liquid-eb20 .panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.north_9637 { text-align: center; }
.backdrop-small-e0a2 { text-align: left; }
.dirty_33ac { text-align: right; }

.east_3a98 { margin-bottom: 0; }
.small_c1ee { margin-bottom: 0.5rem; }
.tall-0eb6 { margin-bottom: 1rem; }
.west-6c44 { margin-bottom: 1.5rem; }
.status-medium-2b5e { margin-bottom: 2rem; }

.link-top-0f02 { margin-top: 0; }
.texture-cool-90b1 { margin-top: 0.5rem; }
.caption_current_3fd8 { margin-top: 1rem; }
.summary_light_9881 { margin-top: 1.5rem; }
.smooth_31e7 { margin-top: 2rem; }

.fn-hidden-4c86 { display: none; }
.fn-visible-4c86 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .overlay_d962 {
        padding: 6rem 0 3rem;
    }
    
    .heading_e9e0 {
        text-align: center;
    }
    
    .border-black-f06c {
        text-align: center;
    }
    
    .paper_5911 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .footer_16fa,
    .outer-fc6e,
    .new-2980,
    .stale-d68b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .overlay_d962 {
        background: none;
    }
}

/* Providers Section */
.nav-lite-434c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-9eaa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-9eaa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-9eaa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_c89a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_c89a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.yellow_f0f3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter_mini_18a2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-c293 {
    list-style: none;
    padding: 0;
}

.mask-c293 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask-c293 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.frame_simple_93e6 {
    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);
}

.frame_simple_93e6 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pink-1013 {
    padding: var(--section-padding);
}

.breadcrumb-east-fd0a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-east-fd0a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_31f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail_31f9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.section_west_af04 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tabs-4de2 {
    display: flex;
    flex-direction: column;
}

.paragraph-cb7a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.modal_solid_2658 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gold-8ca4 {
    color: var(--accent-color);
}

.list_a9e1 {
    font-size: 1.25rem;
}

.full-bd92 {
    margin-bottom: 1rem;
}

.full-bd92 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.info_3ae9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.current-7fa4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.icon_25c1 {
    text-align: center;
}

.highlight-selected-a985 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.soft-11c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-93cc {
    margin: 2rem 0;
}

.sort_first_5a3f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.sort_first_5a3f .logo-6fca {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_75cf {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.focused_8101 {
    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;
}

.focused_8101:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.right-2c8f {
    font-size: 2rem;
}

.filter_28e1 {
    display: flex;
    flex-direction: column;
}

.alert_647d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sidebar_white_10d6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.alert-e673 {
    padding: var(--section-padding);
}

.yellow-2c9c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .yellow-2c9c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yellow-2c9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_3a3c {
    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);
}

.button_3a3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_3a3c .highlight-selected-a985 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.button_3a3c .panel_wood_6ae4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.button_3a3c .focused-86a6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.bright_5965 {
    margin-top: 4rem;
}

.purple-ec3b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.highlight_6b07 {
    overflow-x: auto;
}

.description-dark-09b1 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.description-dark-09b1 thead {
    background: var(--accent-color);
}

.description-dark-09b1 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.description-dark-09b1 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.description-dark-09b1 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.description-dark-09b1 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.orange_7b53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_f794 {
    max-width: 900px;
    margin: 0 auto;
}

.white_bc96 {
    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);
}

.white_bc96:hover {
    border-color: var(--accent-color);
}

.photo_4c42 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.photo_4c42 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.background-gold-50eb {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.white_bc96.fn-active-4c86 .background-gold-50eb {
    transform: rotate(45deg);
}

.small-17c5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.white_bc96.fn-active-4c86 .small-17c5 {
    max-height: 1000px;
}

.small-17c5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.frame_last_0c1c {
    padding: var(--section-padding);
}

.caption-pressed-5cbd {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.in-4790 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_9191 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle_9191 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside_orange_a9d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-last-8608 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.grid_5b8f {
    font-size: 2rem;
}

.wrapper_cc04 {
    color: var(--text-white);
    margin: 0;
}

.summary-2e17 {
    list-style: none;
    padding: 0;
}

.summary-2e17 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-2e17 li:last-child {
    border-bottom: none;
}

.picture-next-cdfd {
    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);
}

.picture-next-cdfd p {
    color: var(--success-color);
    margin: 0;
}

.alert-bright-ca02 {
    margin-top: 3rem;
}

.module-fast-fe6f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.narrow-163b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .narrow-163b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_f997 {
    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);
}

.active_7623 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wrapper_f997 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.right-d4e8 {
    padding: var(--section-padding);
}

.outer-f517 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer-f517 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_2a84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top_2a84:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.short_d70d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.copper_ef0f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tabs_af95 {
    flex: 1;
}

.north-e6ce {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.button_top_9c3c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dark_787b {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-ec14 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element-ec14:last-child {
    border-bottom: none;
}

/* Comparison Section */
.brown-aff5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.fluid_b755 {
    padding: var(--section-padding);
}

.left-f4fb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.bronze-577c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-577c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-yellow-8df6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-02ec, .text_d6ff, .mini_4d62 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.mini_4d62 {
    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 */
.accent_664b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-under-ac52 {
    margin: 2rem 0;
}

.summary_copper_c9ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_5c15 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.preview-ed20 {
    list-style: none;
    padding: 0;
}

.preview-ed20 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;
}

.preview-ed20 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.preview-ed20 li:last-child {
    border-bottom: none;
}

.hidden_a1b2 {
    text-align: center;
    margin-top: 2rem;
}

.huge_01b0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.text_gas_8e2d {
    padding: var(--section-padding);
}

.layout_slow_fcb6 {
    margin: 2rem 0;
}

.widget-inner-27f4 {
    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) {
    .widget-inner-27f4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.widget-inner-27f4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wrapper_bf27 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.pagination_stone_c2b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.carousel-light-018b {
    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;
}

.layout-bbc5 {
    flex: 1;
}

.dark_cc2d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module_d889 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail_soft_2776 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.layout-b866 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .layout-b866 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.shade-wood-503a {
    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);
}

.shade-wood-503a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade-wood-503a .highlight-selected-a985 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade-wood-503a .panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.table-571c {
    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);
}

.banner_eafd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.banner_eafd strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.video-gold-4aa7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .video-gold-4aa7 {
        grid-template-columns: 1fr 1fr;
    }
}

.iron-38e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_next_9815 {
    margin-bottom: 1.5rem;
}

.primary_next_9815 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.primary_next_9815 input,
.primary_next_9815 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;
}

.primary_next_9815 input:focus,
.primary_next_9815 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.nav-e124 {
    width: 100%;
    margin-top: 1rem;
}

.selected_2288 {
    display: flex;
    align-items: center;
}

.modal-5a0e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.carousel_630f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.popup-mini-3b28 {
    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;
}

.panel-white-e358 {
    color: var(--text-gray);
}

.focus_green_5810 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.static_30c5 {
    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);
}

.static_30c5 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.aside_white_9f25 {
    margin-top: 3rem;
}

.brown_c3e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tooltip_fresh_bfac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-5d15 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gold-aa59 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-aa59:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.primary-orange-1b43 {
    padding: var(--section-padding);
}

.wide-fe98 {
    margin: 2rem 0;
}

.backdrop-light-1655 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.module-7732 {
    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;
}

.module-7732:hover, .module-7732.fn-active-4c86 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.surface-11f4 {
    display: none;
}

.surface-11f4.fn-active-4c86 {
    display: block;
}

.link-9df2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-fbe3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.brown-7ae7 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.brown-7ae7 ul {
    list-style: none;
    padding: 0;
}

.brown-7ae7 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.brown-7ae7 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.left-59e6 {
    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 */
.shade-2468 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-south-1097 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-ea02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.plasma-213f {
    color: var(--accent-color);
    margin: 0;
}

.active-fb3f {
    display: flex;
    gap: 1.5rem;
}

.center-6032 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.glass-6a28 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.dim_edb2 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.dim_edb2.bronze_7769 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dim_edb2.action-477e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.dim_edb2.sidebar-white-f5b8 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.component-next-4ff1 {
    margin-top: 2rem;
}

.steel_2a5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.focused-5831 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .focused-5831 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_brown_d6ca {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.outline_2d59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.new_da81 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.filter-smooth-d5f9 {
    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 */
.section_next_ccc8 {
    padding: var(--section-padding);
}

.active_brown_35df {
    margin: 2rem 0;
}

.pattern-44db {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.alert_glass_1492 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.down_1c94 {
    list-style: none;
    padding: 0;
}

.down_1c94 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;
}

.down_1c94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.down_1c94 li:last-child {
    border-bottom: none;
}

.short_ae7f {
    margin: 2rem 0;
}

.yellow-cf80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dim_3047 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim_3047 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border_full_d51e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-11b7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot-1f1c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.video_fluid_5fc0 {
    margin-top: 2rem;
}

.aside_stale_8585 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.header_large_a386 {
    list-style: none;
    padding: 0;
}

.form-green-ffb1 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.form-green-ffb1 a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-green-ffb1 a:hover {
    text-decoration: underline;
}

.complex_d1af {
    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 */
.tag_3ae8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-1565 {
    margin: 2rem 0;
}

.sidebar_38ec {
    margin-bottom: 3rem;
}

.sidebar_38ec .sidebar_5c15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.media-medium-637d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar-c5e2 {
    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);
}

.sidebar-c5e2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.frame_basic_5c01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .frame_basic_5c01 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-cool-d1ea {
    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 */
.secondary_39be {
    padding: var(--section-padding);
}

.wrapper-a71d {
    margin: 2rem 0;
}

.up-1c8c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.block_steel_0b9e {
    overflow-x: auto;
    margin: 2rem 0;
}

.badge_smooth_3649 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.backdrop-green-ffbc {
    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;
}

.tall-48af {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tag_8acb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tag_8acb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-ef42 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-ef42 .logo-6fca {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.picture-ef42 .hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.warm_dbc8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.detail_dim_08a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_motion_1671 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_motion_1671 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-e9b6 {
    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;
}

.active-e9b6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.notice_cd67 {
    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);
}

.footer_09c3 {
    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;
}

.gold_9f11 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty_b17f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.row-simple-edf9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tooltip_7357 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.iron_fa34 {
    color: var(--text-white);
    font-weight: 600;
}

.inner-1660 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gold-a595 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-a595 .info-079e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption-light-8e1d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-light-8e1d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_c1a0 {
    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);
}

.filter_c1a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_c1a0 .highlight-selected-a985 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_c1a0 .panel_wood_6ae4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.stale-f88c {
    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);
}

.description-dirty-bca1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.description-dirty-bca1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.over-fada {
    margin: 2rem 0;
}

.message-3a0b {
    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);
}

.message-3a0b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.icon_1878 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.paper-d357 {
    flex: 1;
}

.tooltip_430f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up_bcae {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gradient_77f4 {
    margin: 2rem 0;
}

.title-8a1a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-8a1a .hover-a2ed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.title-8a1a .hard_04f9 {
    color: var(--text-gray);
    margin: 0;
}

.carousel-5f4b {
    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);
}

.carousel-5f4b .label-dirty-f5cc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.warm_dbc8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hot_bd37 {
    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;
}

.static_e303 {
    flex: 1;
}

.popup_cb52 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.text-3aa7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.tag_e8f4 {
    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;
}

.logo_brown_d895 {
    flex: 1;
}

.bright_16b5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.bronze_ddc3 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.bright-b4cb {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.shadow_dim_a13e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.search-e711 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.search-e711 .info-079e {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.column_8efb {
    margin-top: 2rem;
}

.column_8efb .module-fast-fe6f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.west-a508 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple_1fc8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .purple_1fc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_1fc8 .icon_25c1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-slow-2dbf {
    margin: 2rem 0;
}

.active-5b7f {
    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 */
.list_down_1993 {
    padding: var(--section-padding);
}

.black_b939 {
    margin-top: 1rem;
}

.footer_dark_9531 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.footer_dark_9531 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.footer_dark_9531 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.info-4f37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_6aba {
    margin: 2rem 0;
}

.surface-8b05 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.dim_4331 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accent_wood_1cc0 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pagination_6402 {
    margin: 2rem 0;
}

.steel_f4a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.steel_f4a1 .sidebar_5c15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner-slow-a32b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner-slow-a32b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.iron_d8f8 {
    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);
}

.footer-hard-cd9c {
    color: var(--text-white);
    font-weight: 600;
}

.frame_brown_a6f8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.tabs-0856 {
    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);
}

.tabs-0856 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.disabled_thick_112b {
    padding: var(--section-padding);
}

.current-f83b {
    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;
}

.current-f83b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.icon-hot-0522 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-hot-0522 .active_7623 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-hot-0522 .warm-49ea {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.backdrop_d963 {
    flex: 1;
}

.layout_solid_16ce {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus_narrow_248b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_narrow_248b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus_narrow_248b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.north_7e13 {
    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);
}

.north_7e13 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north_7e13 strong {
    color: var(--warning-color);
}

/* Slots Section */
.alert_north_0a23 {
    padding: var(--section-padding);
}

.card_liquid_e0a1 {
    margin: 2rem 0;
}

/* Table Games Section */
.row-black-0305 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_6b08 {
    margin: 2rem 0;
}

.narrow_ddc1 {
    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);
}

.narrow_ddc1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.narrow_ddc1 .smooth_366a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow_ddc1 .dropdown_yellow_1c5f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.message-0146 {
    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);
}

.message-0146 .label-dirty-f5cc {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.narrow_0698 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_46a0 {
    margin: 2rem 0;
}

.short_41c2 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple_a139 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_light_875e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.orange-09ec {
    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);
}

.orange-09ec:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.orange-09ec.fn-active-4c86 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-huge-5df1 {
    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);
}

.stone_5b33 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stone_5b33 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.layout_hard_48b9 {
    padding: var(--section-padding);
}

.banner-fast-1676 {
    margin: 2rem 0;
}

.short-2d01 {
    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);
}

.short-2d01:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .short-2d01 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first-75b2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.dirty_a2a3 {
    flex: 1;
}

.heading_green_15e7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade-0c7b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notification_373c {
    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;
}

.info-430b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-thick-17cd {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status_current_6326 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.title_red_6643 {
    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;
}

.title_red_6643:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.old-a32b {
    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);
}

.table-mini-b822 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.table-mini-b822 strong {
    color: var(--accent-color);
}

/* New Games Section */
.bottom-4e6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_hovered_f388 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .paragraph_hovered_f388 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph_hovered_f388 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-14e8 {
    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;
}

.complex-14e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.section-2ee6 {
    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;
}

.notification-fixed-621e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pagination-fa06 {
    font-size: 2rem;
}

.small_02d2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.column_9488 {
    flex: 1;
}

.dynamic_6cc6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.focused-a143 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.media_motion_d4cc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fast_2408 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bottom-41f4 {
    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;
}

.tooltip-6d8f {
    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;
}

.tooltip-6d8f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.disabled-d1ec {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-0627 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.west_5703 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .west_5703 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-down-b996 {
    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);
}

.video-dark-eb02 {
    color: var(--text-white);
    font-weight: 600;
}

.list-eace {
    color: var(--accent-color);
    font-weight: 600;
}

.popup-fba5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.popup-fba5 strong {
    color: var(--accent-color);
}

/* Security Section */
.notice-center-5d69 {
    padding: var(--section-padding);
}

/* Benefits Section */
.modal-plasma-36a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.box-13ff {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.sidebar-wood-391e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_f162 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.full_1482 {
    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) {
    .full_1482 {
        flex-direction: column;
        gap: 1rem;
    }
}

.full_1482:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.full_1482 .tag_e8f4 {
    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;
}

.full_1482 .logo_brown_d895 {
    flex: 1;
}

.full_1482 .bright_16b5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.full_1482 .bronze_ddc3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.current_8283 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current_8283 .secondary-steel-badb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current_8283 .pagination-large-f02c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_8283 .pagination-large-f02c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.current_8283 .pagination-large-f02c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.full_f75f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.module_thick_e5ea {
    padding: var(--section-padding);
}

.pink-f023 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pink-f023 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_bronze_516c {
    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);
}

.icon_bronze_516c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.icon_bronze_516c .narrow_eb86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_bronze_516c .north-f563 {
    flex: 1;
}

.icon_bronze_516c .gold_e6f5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon_bronze_516c .advanced_7753 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.iron-3710 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-3710 .column-2eae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.iron-3710 .status_bright_3cd8 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.iron-3710 .status_bright_3cd8 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);
}

.iron-3710 .status_bright_3cd8 li:last-child {
    border-bottom: none;
}

.iron-3710 .status_bright_3cd8 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;
}

.iron-3710 .status_bright_3cd8 li strong {
    color: var(--text-white);
}

.box_d296 {
    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);
}

.box_d296 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_d296 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hot_e53a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-outer-866a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .banner-outer-866a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-fa7c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.modal-fa7c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bottom_cb3f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.red_e347 {
    font-size: 2rem;
}

.rough-c44f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown_6b79 {
    flex: 1;
}

.wide-cbc7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide-cbc7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wide-cbc7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.heading-blue-d0a6 {
    margin-top: 3rem;
}

.pattern-44db {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.alert_glass_1492 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.down_1c94 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.down_1c94 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.down_1c94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.down_1c94 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.list_f99a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_rough_4b7d {
    margin: 2rem 0;
}

.solid_a6d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.solid_a6d7 .sidebar_5c15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel_17b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .panel_17b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-96ee {
    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);
}

.list-96ee:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.advanced-d755 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-hot-200a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.chip_9da8 {
    padding: var(--section-padding);
}

.icon_mini_5dbe {
    margin: 2rem 0;
}

.item_fluid_5f3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .item_fluid_5f3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_fluid_5f3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-blue-bb77 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hidden-blue-bb77:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.selected-75d1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.accent_stale_626b {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.notice_center_5f9e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice_center_5f9e.footer-full-3203 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.stone_61f7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.alert_30f6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.filter-fresh-d5f2 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_f45a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow_34b0 {
    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);
}

.slow_34b0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow_34b0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.summary-7dbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_f177 {
    margin: 2rem 0;
}

.tabs-b85b {
    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) {
    .tabs-b85b {
        flex-direction: column;
        gap: 1rem;
    }
}

.tabs-b85b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs-b85b::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);
}

.media-a09a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hard_3cf6 {
    flex: 1;
}

.alert_0183 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.under_35e4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.under_35e4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.video-e9d9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_a744 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-683e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard-683e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-781a {
    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);
}

.input_219b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hard_6c6f {
    flex: 1;
}

.primary_b31c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stale-a959 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.narrow-909d {
    margin-top: 2rem;
    text-align: center;
}

.secondary-clean-eb1d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary-clean-eb1d strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.gallery_9886 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_9886 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-54b2 {
    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);
}

.dropdown-54b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown-54b2 .text_action_ebec {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown-54b2 .basic_bb1a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dropdown-54b2 .blue-a101 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.dropdown-54b2 .top_0e63 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.top-a0c4 {
    padding: var(--section-padding);
}

.dim_106a .column-paper-1a87 {
    flex: 1;
}

/* Promo Calendar Section */
.notice-fixed-07a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-cb2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-cb2e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-701d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-3951 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.active-medium-b366 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider-7957 {
    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);
}

.badge_d76d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accordion-3cae {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.form_d118 {
    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);
}

.form_d118 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_d118 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.grid_east_44cf {
    padding: var(--section-padding);
}

.rough_9da4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rough_9da4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_cool_ce90 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_d11a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup-86c7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-86c7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-4c41 {
    margin-top: 3rem;
}

.shadow-4c41 .pattern-44db {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.shadow-4c41 .alert_glass_1492 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shadow-4c41 .down_1c94 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.shadow-4c41 .down_1c94 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.shadow-4c41 .down_1c94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.shadow-4c41 .down_1c94 li strong {
    color: var(--warning-color);
}

.footer_orange_ddbe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer_orange_ddbe strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.lite-5aed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_4816 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_4816 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_orange_7787 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_orange_7787 .sidebar_5c15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.modal_iron_1cf9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs-stone-a7b0 {
    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);
}

.tabs-stone-a7b0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero_right_5672 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-c2b0 {
    flex: 1;
}

.card-d856 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.pressed-9c9e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active-ad45 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.huge-7cf5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.upper_2f3c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .upper_2f3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-d447 {
    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);
}

.header-d447:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_c1d0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion_631e {
    color: var(--text-gray);
    font-size: 1rem;
}

.banner_eafd {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_aefb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.element_aefb strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.box_over_88a5 { 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; }
.content_hard_b7fd, .icon-0e84 { max-width:100%; height:auto; }

.element-selected-753f, .down_7808, .brown-f469 { white-space:normal; }

.heading_e9e0,
.border-black-f06c,
.down-a1e4,
.gallery_9886,
.gradient_77f4,
.disabled_6cd8 {
  flex-wrap:wrap;
}

[class*="grid"],
.upper_2f3c,
.item_fluid_5f3c,
.slider_fast_423a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.overlay_d962 img,
.border-black-f06c img,
.border_bfe1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.image-huge-6fed, .hovered_5e57,
.layout-0f3f, .feature_hovered_3fdb {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.highlight_6b07 { width:100%; overflow-x:auto; }
.highlight_6b07 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.status-9eaa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .status-9eaa {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.card_c89a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.yellow-2c9c,
.input_a19d,
.short_63d8,
.input-ff9f,
.layout-b866,
.upper_2f3c,
.item_fluid_5f3c,
.slider_fast_423a,
.pink_fa14,
.banner-fast-1676,
.status-9eaa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .yellow-2c9c,
  .input_a19d,
  .short_63d8,
  .input-ff9f,
  .layout-b866,
  .upper_2f3c,
  .item_fluid_5f3c,
  .slider_fast_423a,
  .pink_fa14,
  .banner-fast-1676,
  .status-9eaa {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.button_3a3c,
.shade-wood-503a,
.header-d447,
.east-5b9e,
.hidden-blue-bb77,
.liquid-eb20,
.short-2d01,
.card_c89a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.block_004d,
.paragraph-9546,
.photo-down-821d {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.block_004d > *,
.paragraph-9546 > *,
.photo-down-821d > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 95a7 */
.ghost-box-n4 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
