/* {$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;
}

.purple_1403 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.active_a99f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .active_a99f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .active_a99f {
        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 */
.wide_63ca {
    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);
}

.warm_47be {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .warm_47be {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .red_c88c {
        grid-column: 1;
    }
    
    .border-dynamic-49a6 {
        grid-column: 2;
    }
    
    .right_6206 {
        grid-column: 3;
    }
}

.red_c88c img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.red_c88c:hover img {
    transform: scale(1.05);
}

/* Navigation */
.feature_cold_ffed {
    display: none;
}

@media (min-width: 1024px) {
    .feature_cold_ffed {
        display: block;
    }
}

/* Grouped Navigation */
.dirty-33ea {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section_93e7 {
    position: relative;
}

.focus-south-dd34 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.section_93e7 .badge_662b {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.badge_662b {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.iron_4924 {
    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;
}

.iron_4924:hover,
.iron_4924.fn-active-3368 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.primary_e027 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .primary_e027 {
        display: flex;
    }
}

/* Mobile Register Button */
.border-dynamic-49a6 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .border-dynamic-49a6 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.liquid-921a {
    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;
}

.liquid-921a::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 */
.right_6206 {
    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) {
    .right_6206 {
        display: none;
    }
}

.right_6206 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.right_6206.fn-active-3368 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.right_6206.fn-active-3368 span:nth-child(2) {
    opacity: 0;
}

.right_6206.fn-active-3368 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.row_6d40 {
    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;
}

.row_6d40.fn-active-3368 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.list-outer-db1a {
    overflow: hidden;
}

.hover-ac9c {
    list-style: none;
    padding: 0.75rem 0;
}

.plasma-bbe5 {
    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;
}

.plasma-bbe5:hover,
.plasma-bbe5.fn-active-3368 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.plasma-bbe5.wrapper_21bc {
    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;
}

.plasma-bbe5.wrapper_21bc::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 */
.content-outer-8e0c {
    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;
}

.mask_d85c {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.mask_d85c:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.disabled-first-f3fa {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.disabled-first-f3fa:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.row-black-f9a8 {
    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;
}

.row-black-f9a8:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.wrapper_motion_04b4 {
    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;
}

.pattern_left_ba01 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pattern_left_ba01:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background-9f5b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background-9f5b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.photo_thick_3eb1 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.photo_thick_3eb1: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);
}

.dropdown-silver-c0e4 {
    font-size: 1em;
    font-weight: 700;
}

.box-current-6861 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.smooth_b18b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.smooth_b18b::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;
}

.carousel_lower_22c9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .carousel_lower_22c9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.frame_6bf2 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.card_basic_02ca {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.filter-ca0f {
    margin-bottom: 2rem;
}

.yellow_119e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .yellow_119e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-7979 {
    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);
}

.input-7e5b {
    font-size: 1.5rem;
}

.photo-5d87 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.nav_7926 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fluid_7b88 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.fluid_7b88:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.status_f9ce {
    text-align: center;
    margin-bottom: 3rem;
}

.backdrop_hovered_60fc {
    margin-bottom: 1rem;
}

.description-f57a {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.brown_0341 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .brown_0341 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .brown_0341.tall-3368 {
        direction: rtl;
    }
    
    .brown_0341.tall-3368 > * {
        direction: ltr;
    }
}

.outer-0598 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.outer-0598:first-child {
    margin-top: 0;
}

.narrow-8aed {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-95fc {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.article-95fc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.filter_tall_61c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_tall_61c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-next-e567 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.new_6b58 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.nav-7795 {
    list-style: none;
}

.nav-7795 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-7795 li:last-child {
    border-bottom: none;
}

/* Games Features */
.rough-15fe {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.huge_5c8f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.action-2f46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.column-cae5 {
    margin: 2rem 0;
}

.carousel_1f6d {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.nav_4164 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.motion_b0e4 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.overlay-2a38 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.content-simple-72f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-simple-72f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight_middle_9d6a {
    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);
}

.highlight_middle_9d6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider_glass_eff5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video_c3e8 {
    font-size: 1.5rem;
}

.form_b6df {
    color: var(--accent-color);
    margin: 0;
}

.current-ab83 {
    list-style: none;
}

.current-ab83 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.current-ab83 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.media_2495 {
    margin: 2rem 0;
}

.tertiary-2aff {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pressed-ae7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pressed-ae7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_de4d {
    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);
}

.alert-short-e575 {
    font-size: 1.25rem;
}

.menu-under-eb88 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.frame_hard_e60e,
.paragraph_e06f {
    text-align: center;
    margin: 2rem 0;
}

.gold-f30c,
.summary_pro_f59c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.accent-0066 {
    margin: 2rem 0;
    text-align: center;
}

.notification-hard-de78 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-hard-de78::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;
}

.module_inner_4a34 {
    position: relative;
    z-index: 1;
}

.clean_4380 {
    margin-bottom: 1rem;
}

.advanced_901f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modal_copper_9b35 {
    margin-bottom: 3rem;
}

.tertiary-left-2197 {
    margin-top: 3rem;
}

.shade-a189 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .shade-a189 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-a189 .wood-7979 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel_3605 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel-8f98 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.center_2e9f {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.box_ef32 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .box_ef32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box_ef32 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.surface_cc29 {
    margin-bottom: 1rem;
}

.dynamic-a14d img {
    margin-bottom: 1rem;
}

.detail_797e {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-large-a3ed {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.summary-narrow-4be1 {
    list-style: none;
}

.summary-narrow-4be1 li {
    margin-bottom: 0.5rem;
}

.summary-narrow-4be1 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.summary-narrow-4be1 a:hover {
    color: var(--accent-color);
}

.feature_bright_802e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.black-d7a0 {
    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);
}

.black-d7a0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.caption_orange_183f {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.caption_orange_183f p {
    margin-bottom: 0.25rem;
}

.main-ccfe {
    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) {
    .main-ccfe {
        flex-direction: row;
    }
}

.purple-ca56 {
    text-align: center;
}

@media (min-width: 768px) {
    .purple-ca56 {
        text-align: left;
    }
}

.purple-ca56 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown_31af {
    font-size: 0.75rem !important;
}

.small_f10e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.panel-16ec {
    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);
    }
}

.backdrop_stone_e448 {
    animation: fadeInUp 0.6s ease-out;
}

.mask_159d {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.shadow_63ed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_63ed {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.status-5834 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-5834 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-pressed-c637 {
    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);
}

.gallery-pressed-c637 .action-2f46 {
    font-size: 1.25rem;
}

.gallery-pressed-c637 .progress_dbbf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.paragraph-150f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-150f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_9314 {
    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);
}

.layout_9314:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_tall_f546 {
    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);
}

.hero-ee0c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card_silver_eb1f {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered_5651 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_869a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient_869a .texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient_869a .notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

.brown_fa38 {
    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);
}

.accent-cb42 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.accent-cb42 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.accent-cb42 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.backdrop-active-6280 {
    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);
}

.image_black_7a48 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.current-fcc4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-fcc4 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.current-fcc4 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);
}

.current-fcc4 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.current-fcc4 input::placeholder {
    color: var(--text-muted);
}

.gallery-bd27 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.list_0667 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.list_0667 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.stale-cbe1 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.stale-cbe1:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pressed-ae7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-ae7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_de4d {
    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);
}

.gold_de4d .alert-short-e575 {
    font-size: 1.25rem;
}

.gold_de4d .menu-under-eb88 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.over-532b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item_complex_51cc {
    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);
}

.item_complex_51cc .action-2f46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_complex_51cc .texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item_complex_51cc .notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-6e95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light_5718 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.light_5718 .main-f50d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light_5718 .accordion-current-2749 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module-9368 {
    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);
}

.tall_c11a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tall_c11a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_6822 {
    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);
}

.notification_6822:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_steel_08b7 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.image-simple-9289 {
    flex: 1;
}

.texture_lite_0782 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.in-27c2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_4124 {
    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);
}

.badge_4124:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.shadow_gold_4484 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_gold_4484 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-blue-8373 {
    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);
}

.link-blue-8373:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-338e {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_yellow_e0a8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer_hard_df10 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.east-5819 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.highlight_5f89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-2ef9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_under_ebb3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content_under_ebb3 .nav_cold_38df {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_under_ebb3 .badge-3f03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper-a436 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-huge-b146 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-huge-bdbd {
    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);
}

.alert-huge-bdbd .action-2f46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-huge-bdbd .texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert-huge-bdbd .notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_copper_83ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_copper_83ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_dim_227a {
    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);
}

.filter_dim_227a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.steel_93a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel_93a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-center-bd1c {
    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);
}

.slider-center-bd1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-25ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic_c053 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav_4164 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.widget-cold-4541 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.table-d9cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_gold_f9fb {
    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);
}

.aside_gold_f9fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-pro-628c {
    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);
}

.dim-ee05 {
    flex: 1;
}

.static-fb5a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.thick-3f1e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.solid_ad12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_a945 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-tall-8a83 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-tall-8a83 .main-f50d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-tall-8a83 .accordion-current-2749 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_e06f {
    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);
}

.module-bright-08a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-bright-08a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.banner_gold_ad30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_gold_ad30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-paper-832a {
    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);
}

.disabled-paper-832a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_blue_fe01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-8c27 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.middle_eb88 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo_fresh_f686 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.new-bd4f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-rough-5362 {
    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);
}

.outer_55ba {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-df5b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_blue_7a4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-huge-b146 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-huge-bdbd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-huge-bdbd .texture_easy_d9c7 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert-huge-bdbd .notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-1f64 {
    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);
}

.hovered-bdfc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hovered-bdfc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hovered-bdfc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_569b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.summary_569b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_88b4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.blue-ec54 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.block_ddcc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip-1896 {
    padding: 1.5rem;
}

.element-8cc1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hard-2049 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-2049 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;
}

.hard-2049 li:last-child {
    border-bottom: none;
}

.hard-2049 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.thick_9ae0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_9ae0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_7995 {
    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);
}

.search_7995:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-warm-3a84 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-in-e95d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption_in_38f4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.element_3568 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.aside_71ff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_stale_daf8 {
    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);
}

.dropdown_ce8a {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark_e208 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-feb4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_c8a1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.border-lower-2e5f {
    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);
}

.accordion_081f {
    text-align: center;
}

.grid-7b39 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-10b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.search_8b5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_b46d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_b46d .texture_easy_d9c7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_b46d .notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_a907 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze_a907 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bronze_a907 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_upper_a040 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_upper_a040:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_db61 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.paper-b2ea {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture_easy_d9c7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tabs-orange-d3da {
    padding: 1.5rem;
}

.notice-fast-969c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_d875 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_d875 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;
}

.widget_d875 li:last-child {
    border-bottom: none;
}

.widget_d875 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.description_670b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.blue_d127 {
    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);
}

.blue_d127:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_copper_44c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny-30c7 {
    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);
}

.focus_tall_f546 {
    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;
}

.hero-ee0c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_silver_eb1f {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_06d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_a9c9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.purple_2567 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected_01d8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.summary-center-ceed {
    display: flex;
    gap: 1rem;
}

.summary-center-ceed .pagination_cc95 {
    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;
}

.caption-purple-152c {
    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);
}

.header_ab98 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner-south-67b0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-south-67b0 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;
}

.banner-south-67b0 li:last-child {
    border-bottom: none;
}

.banner-south-67b0 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.filter-161a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter-161a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-161a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_3640 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full_3640:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-stone-06ef {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.preview-pressed-7fc4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.nav_cold_38df {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.outline_gas_bf4e {
    font-size: 1rem;
}

.carousel_0251 {
    padding: 1.5rem;
}

.badge-3f03 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tag-up-1907 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tag-up-1907 .accordion_081f {
    text-align: center;
}

.tag-up-1907 .notice-10b6 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tag-up-1907 .block-south-e64b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.border-stale-1fda {
    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);
}

.border-stale-1fda:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.dim-1b7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-1b7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_36b6 {
    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);
}

.preview_36b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_large_4b90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-iron-8d98 {
    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);
}

.notification-a33f {
    font-size: 2rem;
    flex-shrink: 0;
}

.soft-433a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-next-5004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_next_0c6a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.thumbnail_down_73e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-367f {
    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);
}

.hero-gas-4003 {
    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;
}

.hero-gas-4003.bright_a76a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.hero-gas-4003.slider-outer-cfd3 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.hero-gas-4003.orange_6882 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.hero-gas-4003.accent_selected_1dda {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.hero-gas-4003.component-hot-8be2 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.left_e131 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up_8181 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_0d5f {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-02f9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.row-6e95 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-6e95 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;
}

.row-6e95 li:last-child {
    border-bottom: none;
}

.row-6e95 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.hidden-079d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hidden-079d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden-079d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-bb8b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.old-bb8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-bb8b.east-1166 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .old-bb8b.east-1166 {
        grid-column: span 3;
    }
}

.paper_7a1d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.old-bb8b.east-1166 .paper_7a1d {
    background: rgba(6, 182, 212, 0.1);
}

.main_1fbb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.outline-stale-b100 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.old-bb8b.east-1166 .outline-stale-b100 {
    color: var(--info-color);
}

.panel-bright-0c06 {
    padding: 1.5rem;
    text-align: center;
}

.widget-gas-0075 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.old-bb8b.east-1166 .widget-gas-0075 {
    color: var(--info-color);
}

.small-eab8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.complex_dc36 {
    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 */
.dim-2a09 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-2a09 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-9c83 {
    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);
}

.grid-9c83:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium_9124 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item_complex_51cc {
    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);
}

.alert-short-e575 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_bb40 {
    flex: 1;
}

.tertiary-2aff {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-6164 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-e7c8 {
    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);
}

.highlight_d9fa {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container_681e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.panel-16ec {
    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);
}

.wood_28c0 {
  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);
}

.wood_28c0 .accordion_081f {
    text-align: center;
}

.wood_28c0 .grid-7b39 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.wood_28c0 .notice-10b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-cce2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_motion_346f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple-190f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media-3c07 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_148b {
    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);
}

.first_a591 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-fluid-11fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_ae3c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo_ae3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_ae3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_motion_38a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter_motion_38a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-3583 {
    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);
}

.table-warm-1bc6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.out_9650 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dropdown_1647 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown_1647.caption_f4b2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dropdown_1647.primary_5d62 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.dropdown_1647.complex-6b42 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.east-f871 {
    padding: 1.5rem;
    text-align: center;
}

.left-b16b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mask_right_47da {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mask_right_47da .short_1e8f {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.motion_3e2d {
    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);
}

.motion_3e2d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo-aba0 {
  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);
}

.content-bb5b {
    text-align: center;
}

.content-bb5b .grid-7b39 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.content-bb5b .notice-10b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tooltip_e19b { text-align: center; }
.sidebar-rough-aa00 { text-align: left; }
.breadcrumb-2902 { text-align: right; }

.popup-motion-0a4c { margin-bottom: 0; }
.hidden_2809 { margin-bottom: 0.5rem; }
.surface-c1ab { margin-bottom: 1rem; }
.list_bottom_496b { margin-bottom: 1.5rem; }
.large_de7b { margin-bottom: 2rem; }

.stone_0c68 { margin-top: 0; }
.advanced_85b9 { margin-top: 0.5rem; }
.smooth-fd26 { margin-top: 1rem; }
.inner-747b { margin-top: 1.5rem; }
.status_7aef { margin-top: 2rem; }

.fn-hidden-3368 { display: none; }
.fn-visible-3368 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .smooth_b18b {
        padding: 6rem 0 3rem;
    }
    
    .carousel_lower_22c9 {
        text-align: center;
    }
    
    .brown_0341 {
        text-align: center;
    }
    
    .yellow_119e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .wide_63ca,
    .row_6d40,
    .notification-hard-de78,
    .center_2e9f {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .smooth_b18b {
        background: none;
    }
}

/* Providers Section */
.disabled-gas-b520 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-west-4421 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-west-4421 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-west-4421 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-lower-9e0a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary-lower-9e0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.plasma_4c1e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tag-5486 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cool_5d23 {
    list-style: none;
    padding: 0;
}

.cool_5d23 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.cool_5d23 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.container-solid-737e {
    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);
}

.container-solid-737e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.element_simple_d552 {
    padding: var(--section-padding);
}

.small_097b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small_097b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_lower_334b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus_lower_334b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.aside_outer_779e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tag-0b88 {
    display: flex;
    flex-direction: column;
}

.old_a840 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.video_in_7302 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.north-d412 {
    color: var(--accent-color);
}

.backdrop-924e {
    font-size: 1.25rem;
}

.motion_1f91 {
    margin-bottom: 1rem;
}

.motion_1f91 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.main_glass_b083 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.right-3431 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.accordion_081f {
    text-align: center;
}

.grid-7b39 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-10b6 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.pro-eea9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_f0ba {
    margin: 2rem 0;
}

.chip-cool-84c6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.chip-cool-84c6 .action-2f46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-short-6160 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stone-b55c {
    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;
}

.stone-b55c:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar_208e {
    font-size: 2rem;
}

.focus_4359 {
    display: flex;
    flex-direction: column;
}

.wrapper-9e56 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.focus-92e5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.south_6bb9 {
    padding: var(--section-padding);
}

.mini-28f4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mini-28f4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini-28f4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-huge-2b89 {
    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);
}

.border-huge-2b89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-huge-2b89 .grid-7b39 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.border-huge-2b89 .notice-10b6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.border-huge-2b89 .element-static-3c7a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.module-8ce0 {
    margin-top: 4rem;
}

.item_f922 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.highlight-fixed-d690 {
    overflow-x: auto;
}

.tag-a7bf {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tag-a7bf thead {
    background: var(--accent-color);
}

.tag-a7bf th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.tag-a7bf td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-a7bf tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.tag-a7bf tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.image-copper-8f50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_blue_0924 {
    max-width: 900px;
    margin: 0 auto;
}

.list_96a3 {
    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);
}

.list_96a3:hover {
    border-color: var(--accent-color);
}

.banner_copper_d826 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.banner_copper_d826 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.dark_76c9 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.list_96a3.fn-active-3368 .dark_76c9 {
    transform: rotate(45deg);
}

.hero_5e90 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.list_96a3.fn-active-3368 .hero_5e90 {
    max-height: 1000px;
}

.hero_5e90 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.accordion_medium_4a97 {
    padding: var(--section-padding);
}

.accent-cb42 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.footer-0f87 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-c549 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-c549 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_up_0700 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-17a0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.module_0172 {
    font-size: 2rem;
}

.inner_27c2 {
    color: var(--text-white);
    margin: 0;
}

.black_d76c {
    list-style: none;
    padding: 0;
}

.black_d76c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.black_d76c li:last-child {
    border-bottom: none;
}

.dropdown-prev-3eaf {
    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);
}

.dropdown-prev-3eaf p {
    color: var(--success-color);
    margin: 0;
}

.tabs-last-becb {
    margin-top: 3rem;
}

.header_ab98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cold-ab59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold-ab59 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar_warm_8ab3 {
    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);
}

.image_8096 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.avatar_warm_8ab3 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.card_32bc {
    padding: var(--section-padding);
}

.grid_dim_fc90 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_dim_fc90 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_center_026e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_center_026e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.module_2be3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wrapper-left-5c1f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel-clean-d3ef {
    flex: 1;
}

.full-5771 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.east-b089 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.selected_567b {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_7bdf {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_7bdf:last-child {
    border-bottom: none;
}

/* Comparison Section */
.pattern_f29c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.top-ea54 {
    padding: var(--section-padding);
}

.gradient_focused_aa34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.green-ebac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-ebac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_east_f3d5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-clean-a37d, .down-60c9, .menu-031d {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.menu-031d {
    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 */
.avatar-bright-0a43 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-22e0 {
    margin: 2rem 0;
}

.slider-up-b295 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_7bb6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-afe6 {
    list-style: none;
    padding: 0;
}

.highlight-afe6 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;
}

.highlight-afe6 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight-afe6 li:last-child {
    border-bottom: none;
}

.info-prev-61a9 {
    text-align: center;
    margin-top: 2rem;
}

.thick_2dab {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.slow-f540 {
    padding: var(--section-padding);
}

.inner_3c45 {
    margin: 2rem 0;
}

.gradient-fb30 {
    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) {
    .gradient-fb30 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gradient-fb30:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.soft_dbd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.search_e6d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.shade_0953 {
    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;
}

.module-dark-450b {
    flex: 1;
}

.white-0f16 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.header_smooth_5152 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.steel_88ab {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.heading-e227 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .heading-e227 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.out_bdff {
    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);
}

.out_bdff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.out_bdff .grid-7b39 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.out_bdff .notice-10b6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.simple-604b {
    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);
}

.logo-f461 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.logo-f461 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.description-steel-0bc9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .description-steel-0bc9 {
        grid-template-columns: 1fr 1fr;
    }
}

.status_last_a2ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_lower_ed9a {
    margin-bottom: 1.5rem;
}

.highlight_lower_ed9a label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight_lower_ed9a input,
.highlight_lower_ed9a 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;
}

.highlight_lower_ed9a input:focus,
.highlight_lower_ed9a select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.item-wood-7a5a {
    width: 100%;
    margin-top: 1rem;
}

.avatar-8b28 {
    display: flex;
    align-items: center;
}

.video-upper-cbba {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.stone-5e26 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.logo_bronze_644b {
    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;
}

.copper_c4e0 {
    color: var(--text-gray);
}

.sidebar_6c40 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.row-orange-25f9 {
    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);
}

.row-orange-25f9 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.lower-eb33 {
    margin-top: 3rem;
}

.feature-thick-c8d5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.grid-1893 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced-2e4e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.short_9a4c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.short_9a4c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.brown-f62b {
    padding: var(--section-padding);
}

.mask_4c9f {
    margin: 2rem 0;
}

.hover_upper_e555 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.first_f909 {
    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;
}

.first_f909:hover, .first_f909.fn-active-3368 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.row_9428 {
    display: none;
}

.row_9428.fn-active-3368 {
    display: block;
}

.main-huge-2e5a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-891d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.title-2a30 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.title-2a30 ul {
    list-style: none;
    padding: 0;
}

.title-2a30 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.title-2a30 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight_f497 {
    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 */
.icon_thick_e73a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_0d71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-warm-6c89 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form_brown_6749 {
    color: var(--accent-color);
    margin: 0;
}

.badge-gold-cf95 {
    display: flex;
    gap: 1.5rem;
}

.heading_cc2e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mini-f332 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.module_0c29 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_0c29.pagination-small-c7c1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.module_0c29.sidebar_inner_68d0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.module_0c29.outline_9d08 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mask-current-9f5b {
    margin-top: 2rem;
}

.content-bronze-3ab1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.text-liquid-81c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .text-liquid-81c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_e5fa {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.text_last_86b4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.table_752c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.content-basic-45ef {
    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 */
.disabled_7125 {
    padding: var(--section-padding);
}

.dirty-175b {
    margin: 2rem 0;
}

.tall-f6cc {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.button_wood_4b4d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.pattern_0c33 {
    list-style: none;
    padding: 0;
}

.pattern_0c33 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;
}

.pattern_0c33 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.pattern_0c33 li:last-child {
    border-bottom: none;
}

.badge-1c8d {
    margin: 2rem 0;
}

.row_red_f238 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dirty_7920 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dirty_7920 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside_blue_6b0a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-d51b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort_baf4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header-gold-2a1b {
    margin-top: 2rem;
}

.texture_lite_0782 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fixed_9e4c {
    list-style: none;
    padding: 0;
}

.breadcrumb-orange-0981 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.breadcrumb-orange-0981 a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-orange-0981 a:hover {
    text-decoration: underline;
}

.alert_old_72cb {
    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 */
.menu_c57e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium_d1b7 {
    margin: 2rem 0;
}

.pink_9bba {
    margin-bottom: 3rem;
}

.pink_9bba .static_7bb6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.first_7090 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.secondary_50fc {
    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);
}

.secondary_50fc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.media_fded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .media_fded {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm-81d7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.info_4d18 {
    padding: var(--section-padding);
}

.full-05dd {
    margin: 2rem 0;
}

.hidden_3ff7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.text-0cad {
    overflow-x: auto;
    margin: 2rem 0;
}

.popup-5968 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.sidebar_dark_3949 {
    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;
}

.layout-simple-0907 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.feature-hovered-2610 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .feature-hovered-2610 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_9f34 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_9f34 .action-2f46 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.outline_9f34 .texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pink_8f05 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.container-1921 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-7241 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-7241 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_5e53 {
    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;
}

.notice_5e53:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tag-3b7a {
    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);
}

.chip_f126 {
    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;
}

.fluid-8ee4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge-3775 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.background-eafb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hero_hot_6d56 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.surface_c73e {
    color: var(--text-white);
    font-weight: 600;
}

.disabled-b177 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs-gold-8120 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-gold-8120 .pagination_cc95 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.disabled-850f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-850f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-b49b {
    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);
}

.pattern-b49b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern-b49b .grid-7b39 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pattern-b49b .notice-10b6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.selected_4a08 {
    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);
}

.last_2014 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.last_2014 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.new-bd4f {
    margin: 2rem 0;
}

.block-rough-5362 {
    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);
}

.block-rough-5362:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.outer_55ba {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert_basic_cd2c {
    flex: 1;
}

.progress-df5b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_blue_7a4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.paragraph-huge-b146 {
    margin: 2rem 0;
}

.alert-huge-bdbd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-huge-bdbd .texture_easy_d9c7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.alert-huge-bdbd .notice-fast-969c {
    color: var(--text-gray);
    margin: 0;
}

.status-1f64 {
    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);
}

.status-1f64 .gold-f30c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.pink_8f05 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.footer-pro-628c {
    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;
}

.dim-ee05 {
    flex: 1;
}

.thick-3f1e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.solid_ad12 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.focus_tall_f546 {
    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;
}

.east-2d54 {
    flex: 1;
}

.hero-ee0c {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.card_silver_eb1f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.purple_2567 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.selected_01d8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.summary-center-ceed {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.summary-center-ceed .pagination_cc95 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption-purple-152c {
    margin-top: 2rem;
}

.caption-purple-152c .header_ab98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.component-iron-9796 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-lower-2e5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border-lower-2e5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-lower-2e5f .accordion_081f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_8b5c {
    margin: 2rem 0;
}

.icon_b46d {
    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 */
.dark_5499 {
    padding: var(--section-padding);
}

.tabs-orange-d3da {
    margin-top: 1rem;
}

.widget_d875 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.widget_d875 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget_d875 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.accent-5161 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_current_3eaa {
    margin: 2rem 0;
}

.liquid-1a01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.detail_center_ed4d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.outer-c79d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.text_wide_e3aa {
    margin: 2rem 0;
}

.badge_acca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.badge_acca .static_7bb6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid-df79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .liquid-df79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-stale-3597 {
    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);
}

.box-dirty-54be {
    color: var(--text-white);
    font-weight: 600;
}

.upper_f23f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.button_9445 {
    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);
}

.button_9445 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.advanced-6cec {
    padding: var(--section-padding);
}

.container_glass_c660 {
    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;
}

.container_glass_c660:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.status-plasma-b6cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-plasma-b6cd .image_8096 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-plasma-b6cd .outer-e2d0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.carousel-6e17 {
    flex: 1;
}

.pink-5b65 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup_d944 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_d944 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.popup_d944 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.header-down-1e6a {
    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);
}

.header-down-1e6a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-down-1e6a strong {
    color: var(--warning-color);
}

/* Slots Section */
.fixed_a742 {
    padding: var(--section-padding);
}

.highlight_5f89 {
    margin: 2rem 0;
}

/* Table Games Section */
.highlight-94db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper-2ef9 {
    margin: 2rem 0;
}

.content_under_ebb3 {
    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);
}

.content_under_ebb3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.content_under_ebb3 .nav_cold_38df {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_under_ebb3 .badge-3f03 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.copper-a436 {
    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);
}

.copper-a436 .gold-f30c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.tall-be98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-5d31 {
    margin: 2rem 0;
}

.link_a5b9 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-2c20 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_6827 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.up-8831 {
    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);
}

.up-8831:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.up-8831.fn-active-3368 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_first_70c1 {
    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);
}

.shade_0a32 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_0a32 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.liquid_d627 {
    padding: var(--section-padding);
}

.focus_middle_75cd {
    margin: 2rem 0;
}

.mask_613c {
    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);
}

.mask_613c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .mask_613c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.advanced_f6f7 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.background_rough_28e2 {
    flex: 1;
}

.table_fe19 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress_middle_d491 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-fresh-50c3 {
    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;
}

.video-cefc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.picture_dfed {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.iron-3954 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.yellow-5787 {
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.yellow-5787:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.black-ee37 {
    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);
}

.out_6638 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.out_6638 strong {
    color: var(--accent-color);
}

/* New Games Section */
.red-bf9d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_ee94 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb_ee94 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_ee94 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_a16b {
    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;
}

.gradient_a16b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tertiary_tall_0ece {
    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;
}

.mini_8f65 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.inner_d37e {
    font-size: 2rem;
}

.green_666d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.summary-fresh-00a2 {
    flex: 1;
}

.widget-364a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.input-691c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.thumbnail_9a79 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern_complex_a1f8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.down_9b3d {
    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;
}

.caption-current-98a7 {
    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;
}

.caption-current-98a7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter-62f4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_f727 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content-40b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .content-40b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-wood-19c5 {
    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);
}

.caption_5851 {
    color: var(--text-white);
    font-weight: 600;
}

.button-out-fe7e {
    color: var(--accent-color);
    font-weight: 600;
}

.badge-0e00 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.badge-0e00 strong {
    color: var(--accent-color);
}

/* Security Section */
.shade-up-ebf2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.overlay_ea4f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.banner_3680 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.outer_14bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over_ab1b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.under_dab7 {
    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) {
    .under_dab7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.under_dab7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.under_dab7 .focus_tall_f546 {
    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;
}

.under_dab7 .east-2d54 {
    flex: 1;
}

.under_dab7 .hero-ee0c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.under_dab7 .card_silver_eb1f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.list_thick_ea80 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_thick_ea80 .tertiary-2aff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_thick_ea80 .over-532b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_thick_ea80 .over-532b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.list_thick_ea80 .over-532b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.cold-2bcd {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.east-4d03 {
    padding: var(--section-padding);
}

.picture-copper-0607 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .picture-copper-0607 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_53ab {
    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);
}

.image_53ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.image_53ab .hidden-pro-e6c9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_53ab .breadcrumb_dynamic_2507 {
    flex: 1;
}

.image_53ab .main-f50d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_53ab .tag_20e2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature-dirty-f4c0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-dirty-f4c0 .down-a3b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-dirty-f4c0 .card_medium_30b1 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.feature-dirty-f4c0 .card_medium_30b1 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);
}

.feature-dirty-f4c0 .card_medium_30b1 li:last-child {
    border-bottom: none;
}

.feature-dirty-f4c0 .card_medium_30b1 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;
}

.feature-dirty-f4c0 .card_medium_30b1 li strong {
    color: var(--text-white);
}

.detail-next-5fd2 {
    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);
}

.detail-next-5fd2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-next-5fd2 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.glass_0bbc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_5444 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outline_5444 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.south_63b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.south_63b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden-slow-9f34 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard_94f7 {
    font-size: 2rem;
}

.footer_cc32 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.primary_5777 {
    flex: 1;
}

.plasma-64dc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma-64dc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.plasma-64dc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.narrow-2cb5 {
    margin-top: 3rem;
}

.tall-f6cc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button_wood_4b4d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_0c33 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_0c33 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pattern_0c33 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pattern_0c33 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.active-fresh-8347 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-e84f {
    margin: 2rem 0;
}

.filter-new-e4f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.filter-new-e4f3 .static_7bb6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-e95b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph-e95b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar-65db {
    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);
}

.sidebar-65db:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.slider_ce41 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.backdrop-solid-13db {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.carousel_clean_0d1f {
    padding: var(--section-padding);
}

.section_wide_c336 {
    margin: 2rem 0;
}

.card-gold-5c7e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .card-gold-5c7e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-gold-5c7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_e847 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion_e847:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside_a85c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item_5d3f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.progress_narrow_4f7b {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.progress_narrow_4f7b.texture_bbbe {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gradient-simple-7088 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.grid-04a6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.new-b32c {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.background-a05c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.action_fb74 {
    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);
}

.action_fb74 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.action_fb74 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.soft_9fa2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_7bd9 {
    margin: 2rem 0;
}

.gradient_576f {
    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) {
    .gradient_576f {
        flex-direction: column;
        gap: 1rem;
    }
}

.gradient_576f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gradient_576f::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);
}

.liquid-878d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.backdrop-bright-d41f {
    flex: 1;
}

.paper_40a9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-warm-b808 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled-warm-b808 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_light_2dd2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_easy_ef36 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer-597c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outer-597c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_complex_b8cb {
    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);
}

.hard-ce70 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.image_white_9e82 {
    flex: 1;
}

.label-tiny-94da {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.disabled_0eb7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail_3c67 {
    margin-top: 2rem;
    text-align: center;
}

.cold_fba7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.cold_fba7 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.dim-1b7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-1b7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_36b6 {
    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);
}

.preview_36b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.preview_36b6 .input-warm-3a84 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_36b6 .block-in-e95d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.preview_36b6 .caption_in_38f4 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.preview_36b6 .element_3568 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.tall-49a3 {
    padding: var(--section-padding);
}

.popup-iron-8d98 .notification_c27f {
    flex: 1;
}

/* Promo Calendar Section */
.fresh_70e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_dirty_8968 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_dirty_8968 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_1c9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_e559 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.clean_a652 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag-old-b959 {
    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);
}

.button-advanced-fc21 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.overlay-7d5c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.element-dynamic-6cd4 {
    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);
}

.element-dynamic-6cd4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element-dynamic-6cd4 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.message-94f8 {
    padding: var(--section-padding);
}

.texture-4b9d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture-4b9d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-9d3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_818a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.purple-6032 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purple-6032 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_467b {
    margin-top: 3rem;
}

.dark_467b .tall-f6cc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dark_467b .button_wood_4b4d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark_467b .pattern_0c33 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dark_467b .pattern_0c33 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dark_467b .pattern_0c33 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dark_467b .pattern_0c33 li strong {
    color: var(--warning-color);
}

.row-black-22a2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row-black-22a2 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.right-44a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-8ecb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-8ecb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner-d35d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-d35d .static_7bb6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.brown_403d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_d675 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.disabled_d675:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fast-e225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-8280 {
    flex: 1;
}

.link_white_093f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.fixed-b79b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gas-43f3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.old-6b87 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.texture-a4c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .texture-a4c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_steel_7ec0 {
    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);
}

.description_steel_7ec0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.inner-1d63 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup_green_f60f {
    color: var(--text-gray);
    font-size: 1rem;
}

.logo-f461 {
    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);
}

.block-4aa3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.block-4aa3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.active_a99f { 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; }
.fluid_7b88, .article-95fc { max-width:100%; height:auto; }

.content-outer-8e0c, .row-black-f9a8, .wrapper_motion_04b4 { white-space:normal; }

.carousel_lower_22c9,
.brown_0341,
.dim-2a09,
.dim-1b7e,
.paragraph-huge-b146,
.logo_ae3c {
  flex-wrap:wrap;
}

[class*="grid"],
.texture-a4c1,
.card-gold-5c7e,
.shade-a189 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.smooth_b18b img,
.brown_0341 img,
.nav_7926 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.frame_6bf2, .card_basic_02ca,
.backdrop_hovered_60fc, .description-f57a {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.highlight-fixed-d690 { width:100%; overflow-x:auto; }
.highlight-fixed-d690 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.link-west-4421 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .link-west-4421 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.summary-lower-9e0a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.mini-28f4,
.carousel_south_46e3,
.primary_gold_7e8f,
.purple-d3c2,
.heading-e227,
.texture-a4c1,
.card-gold-5c7e,
.shade-a189,
.photo-aba0,
.focus_middle_75cd,
.link-west-4421 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .mini-28f4,
  .carousel_south_46e3,
  .primary_gold_7e8f,
  .purple-d3c2,
  .heading-e227,
  .texture-a4c1,
  .card-gold-5c7e,
  .shade-a189,
  .photo-aba0,
  .focus_middle_75cd,
  .link-west-4421 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.border-huge-2b89,
.out_bdff,
.description_steel_7ec0,
.wood-7979,
.motion_e847,
.content-bb5b,
.mask_613c,
.summary-lower-9e0a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.popup_1e76,
.title_small_704a,
.wrapper_light_fea2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.popup_1e76 > *,
.title_small_704a > *,
.wrapper_light_fea2 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 9b16 */
.widget-item-w0 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
