/* {$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;
}

.red-4fda {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.message_wide_fe25 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .message_wide_fe25 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .message_wide_fe25 {
        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 */
.search_edc7 {
    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);
}

.nav-1043 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .nav-1043 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .silver-ed34 {
        grid-column: 1;
    }
    
    .clean_9f2a {
        grid-column: 2;
    }
    
    .filter-1b94 {
        grid-column: 3;
    }
}

.silver-ed34 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.silver-ed34:hover img {
    transform: scale(1.05);
}

/* Navigation */
.button_8da0 {
    display: none;
}

@media (min-width: 1024px) {
    .button_8da0 {
        display: block;
    }
}

/* Grouped Navigation */
.west_9877 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.texture-first-aa36 {
    position: relative;
}

.upper_e50f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.texture-first-aa36 .heading_clean_cc1a {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.heading_clean_cc1a {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.sidebar-complex-ac8f {
    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;
}

.sidebar-complex-ac8f:hover,
.sidebar-complex-ac8f.fn-active-b298 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.avatar_1545 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .avatar_1545 {
        display: flex;
    }
}

/* Mobile Register Button */
.clean_9f2a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .clean_9f2a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.list_brown_75cf {
    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;
}

.list_brown_75cf::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 */
.filter-1b94 {
    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) {
    .filter-1b94 {
        display: none;
    }
}

.filter-1b94 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.filter-1b94.fn-active-b298 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.filter-1b94.fn-active-b298 span:nth-child(2) {
    opacity: 0;
}

.filter-1b94.fn-active-b298 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.west_9708 {
    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;
}

.west_9708.fn-active-b298 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.primary_4cfd {
    overflow: hidden;
}

.column_4a4b {
    list-style: none;
    padding: 0.75rem 0;
}

.over_b507 {
    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;
}

.over_b507:hover,
.over_b507.fn-active-b298 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.over_b507.chip-20b0 {
    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;
}

.over_b507.chip-20b0::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 */
.block-b0df {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.avatar-1015 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.avatar-1015:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.panel_rough_5662 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.panel_rough_5662:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.outline_rough_87ad {
    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;
}

.outline_rough_87ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.active-e781 {
    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;
}

.button-994d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.button-994d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs-pressed-c646 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs-pressed-c646:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.disabled-823c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.disabled-823c: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);
}

.highlight_dark_74e0 {
    font-size: 1em;
    font-weight: 700;
}

.description-south-6337 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.frame-b6a6 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.frame-b6a6::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;
}

.fluid_2e59 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .fluid_2e59 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.solid_30c9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dynamic_5d06 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.breadcrumb-new-e763 {
    margin-bottom: 2rem;
}

.focused_b194 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .focused_b194 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim_247b {
    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);
}

.accent_b117 {
    font-size: 1.5rem;
}

.wrapper_531b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.box-20e1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget_f32a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.widget_f32a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.warm-8dc5 {
    text-align: center;
    margin-bottom: 3rem;
}

.wood_3311 {
    margin-bottom: 1rem;
}

.over_74d3 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.backdrop_4628 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .backdrop_4628 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .backdrop_4628.in-21cb {
        direction: rtl;
    }
    
    .backdrop_4628.in-21cb > * {
        direction: ltr;
    }
}

.pro-b7a0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pro-b7a0:first-child {
    margin-top: 0;
}

.hovered_4002 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.popup-85bb {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.popup-85bb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.notice-gold-acd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-gold-acd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-4820 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-1c73 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade_b85f {
    list-style: none;
}

.shade_b85f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_b85f li:last-child {
    border-bottom: none;
}

/* Games Features */
.out-f039 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.disabled-34eb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.texture-silver-75db {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.simple-65c7 {
    margin: 2rem 0;
}

.narrow_4c09 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.summary_top_c04d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.cold_754b {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pattern-1090 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.iron-4c53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron-4c53 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-6443 {
    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);
}

.current-6443:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tall-56a5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-easy-f6a5 {
    font-size: 1.5rem;
}

.focus-pressed-19d3 {
    color: var(--accent-color);
    margin: 0;
}

.tertiary-fresh-7daf {
    list-style: none;
}

.tertiary-fresh-7daf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tertiary-fresh-7daf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.next-2448 {
    margin: 2rem 0;
}

.thick_7271 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.widget-next-d6a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .widget-next-d6a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_middle_fe71 {
    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);
}

.slider_c9e7 {
    font-size: 1.25rem;
}

.hot-6d6b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.thick_ea61,
.dirty-e15a {
    text-align: center;
    margin: 2rem 0;
}

.notification-f513,
.hero_c827 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.input_b180 {
    margin: 2rem 0;
    text-align: center;
}

.selected-e3f1 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.selected-e3f1::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;
}

.left-11f6 {
    position: relative;
    z-index: 1;
}

.component_left_f951 {
    margin-bottom: 1rem;
}

.pressed_bea4 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.list-259d {
    margin-bottom: 3rem;
}

.image_dim_a8a3 {
    margin-top: 3rem;
}

.popup-next-7e5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .popup-next-7e5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-next-7e5a .dim_247b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_30bd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_cold_fba4 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.row_1cbd {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.silver-c89e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .silver-c89e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver-c89e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.bright-3640 {
    margin-bottom: 1rem;
}

.bottom-73f0 img {
    margin-bottom: 1rem;
}

.sidebar_3611 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-d3c1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.dirty-0c88 {
    list-style: none;
}

.dirty-0c88 li {
    margin-bottom: 0.5rem;
}

.dirty-0c88 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dirty-0c88 a:hover {
    color: var(--accent-color);
}

.search_new_4f0e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shade-ab54 {
    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);
}

.shade-ab54:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.thick_e3d3 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.thick_e3d3 p {
    margin-bottom: 0.25rem;
}

.over_242b {
    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) {
    .over_242b {
        flex-direction: row;
    }
}

.gradient-selected-6a4a {
    text-align: center;
}

@media (min-width: 768px) {
    .gradient-selected-6a4a {
        text-align: left;
    }
}

.gradient-selected-6a4a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop-huge-2945 {
    font-size: 0.75rem !important;
}

.primary-lite-ec49 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.upper-9ff7 {
    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);
    }
}

.current_9bfd {
    animation: fadeInUp 0.6s ease-out;
}

.shade_cfa3 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.disabled-under-114d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-under-114d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.main_complex_2b40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_complex_2b40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-pink-15f7 {
    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);
}

.wrapper-pink-15f7 .texture-silver-75db {
    font-size: 1.25rem;
}

.wrapper-pink-15f7 .steel-40ce {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.heading_inner_6098 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading_inner_6098 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-5e46 {
    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);
}

.hard-5e46:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_bb04 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-accent);
}

.input-purple-f34f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.banner-3466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_pro_b95b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_cf2d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_cf2d .hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_cf2d .module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_7645 {
    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);
}

.south-d040 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.south-d040 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.south-d040 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hard-3894 {
    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);
}

.detail_071d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-4a04 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-4a04 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview-4a04 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);
}

.preview-4a04 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.preview-4a04 input::placeholder {
    color: var(--text-muted);
}

.carousel-75fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.backdrop_4c24 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.backdrop_4c24 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.banner-a4c6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.banner-a4c6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.widget-next-d6a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-next-d6a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_middle_fe71 {
    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);
}

.frame_middle_fe71 .slider_c9e7 {
    font-size: 1.25rem;
}

.frame_middle_fe71 .hot-6d6b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.current-22ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-8093 {
    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);
}

.module-8093 .texture-silver-75db {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-8093 .hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-8093 .module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-b37c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_in_0ae2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active_in_0ae2 .slider-40a3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_in_0ae2 .lite_dd3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_b9c4 {
    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);
}

.action_de8e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .action_de8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-fcc5 {
    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);
}

.secondary-fcc5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_in_381c {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.banner_f761 {
    flex: 1;
}

.accent_44ef {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.static-a47d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pattern-huge-9f7f {
    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);
}

.pattern-huge-9f7f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.next-4b99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next-4b99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_31be {
    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);
}

.list_31be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_2ca4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-91d1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-688f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.new-c17f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph-fresh-ddca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall-c078 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_short_88a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert_short_88a8 .center-5b44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert_short_88a8 .section-2942 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange_d34e {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_b772 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_5e41 {
    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);
}

.overlay_5e41 .texture-silver-75db {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_5e41 .hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay_5e41 .module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-0ece {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small-0ece {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_pink_0742 {
    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);
}

.element_pink_0742:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.cool_e9f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool_e9f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-566e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu-566e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-small-cd83 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_f748 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary_top_c04d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.layout-8235 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.description_4556 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_22f9 {
    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);
}

.alert_22f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_45f0 {
    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);
}

.alert_904f {
    flex: 1;
}

.hero-0b6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.white_dece {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gradient_lite_fcb7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.over_0889 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black_b61c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_b61c .slider-40a3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black_b61c .lite_dd3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-e15a {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-6583 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-6583 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.gallery-4190 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-4190 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_7f7d {
    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);
}

.red_7f7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up-f2ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle-0b72 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.text-left-3448 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.detail-clean-a3b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.new-be8e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-a35c {
    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);
}

.layout-bottom-a6dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-f25c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink_676f {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_b772 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_5e41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.overlay_5e41 .hover_thick_a604 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay_5e41 .module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-7943 {
    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);
}

.feature_wide_9ec6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature_wide_9ec6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature_wide_9ec6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_52bf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.simple_52bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight_4296 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mini-b74b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.west_3de3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notice-f161 {
    padding: 1.5rem;
}

.badge-dabd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lower-7b9d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower-7b9d 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;
}

.lower-7b9d li:last-child {
    border-bottom: none;
}

.lower-7b9d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.overlay_7e1e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_7e1e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-huge-07e2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.frame-huge-07e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-a5b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_42b5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.paragraph-medium-2aaf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav_f12f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-huge-67ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale_70e6 {
    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);
}

.grid-active-e557 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-a056 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_b11d {
    color: var(--text-gray);
    line-height: 1.6;
}

.north-665d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus-hot-5c64 {
    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);
}

.bronze-dae4 {
    text-align: center;
}

.paragraph_3d4f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_be59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tall-7c68 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-motion-0b89 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-motion-0b89 .hover_thick_a604 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-motion-0b89 .module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_pressed_94d9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_pressed_94d9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_pressed_94d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_fluid_bfb5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge_fluid_bfb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze_10d3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_8add {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover_thick_a604 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active_dirty_7940 {
    padding: 1.5rem;
}

.module-5dc5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.table_7fae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_7fae 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;
}

.table_7fae li:last-child {
    border-bottom: none;
}

.table_7fae li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.shade-inner-41ba {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.clean_875e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.clean_875e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer-2d7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-e05d {
    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);
}

.component_bb04 {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.input-purple-f34f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-3466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_602a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large-1cea {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.column-43cd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_bronze_2560 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.image-stale-27ed {
    display: flex;
    gap: 1rem;
}

.image-stale-27ed .cool-88f0 {
    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;
}

.accordion-upper-526e {
    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);
}

.soft_5d6a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-under-0a9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-under-0a9c 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;
}

.hero-under-0a9c li:last-child {
    border-bottom: none;
}

.hero-under-0a9c li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.banner_lower_3a3c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_lower_3a3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_lower_3a3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-1dfd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dim-1dfd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form-f2b6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.block_south_89d4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.center-5b44 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption-in-d04e {
    font-size: 1rem;
}

.module-stale-65cc {
    padding: 1.5rem;
}

.section-2942 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.row_under_0305 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.row_under_0305 .bronze-dae4 {
    text-align: center;
}

.row_under_0305 .mask_be59 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.row_under_0305 .carousel_stone_7bb5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel_5d95 {
    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);
}

.panel_5d95:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.dirty-dcd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-dcd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_silver_85eb {
    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);
}

.summary_silver_85eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-9f75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-c83c {
    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);
}

.shade-outer-54fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_hard_3757 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_ed18 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-7a86 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_bright_099e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_static_0e71 {
    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);
}

.shade_clean_a526 {
    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;
}

.shade_clean_a526.avatar_rough_6d6d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.shade_clean_a526.last-96eb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.shade_clean_a526.green_9eda {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.shade_clean_a526.advanced-c3b7 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.shade_clean_a526.focused-4774 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.carousel_1514 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-5d68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_562f {
    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);
}

.disabled-224e {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb-b37c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-b37c 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;
}

.breadcrumb-b37c li:last-child {
    border-bottom: none;
}

.breadcrumb-b37c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.hover_9832 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover_9832 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover_9832 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-north-e471 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.primary-north-e471:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-north-e471.main-clean-11f8 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .primary-north-e471.main-clean-11f8 {
        grid-column: span 3;
    }
}

.focus_44dc {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.primary-north-e471.main-clean-11f8 .focus_44dc {
    background: rgba(6, 182, 212, 0.1);
}

.west_99f2 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.widget-b3f9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.primary-north-e471.main-clean-11f8 .widget-b3f9 {
    color: var(--info-color);
}

.paper-375f {
    padding: 1.5rem;
    text-align: center;
}

.picture_hard_d6d4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.primary-north-e471.main-clean-11f8 .picture_hard_d6d4 {
    color: var(--info-color);
}

.simple-a5d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.description-last-1ebb {
    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 */
.image-large-2c09 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-large-2c09 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-967f {
    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);
}

.overlay-967f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_d159 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-8093 {
    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);
}

.slider_c9e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_e510 {
    flex: 1;
}

.thick_7271 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_2c74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_dim_569a {
    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);
}

.layout_pressed_2f3a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel_current_7167 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.upper-9ff7 {
    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);
}

.article-west-76c0 {
  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);
}

.article-west-76c0 .bronze-dae4 {
    text-align: center;
}

.article-west-76c0 .paragraph_3d4f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.article-west-76c0 .mask_be59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_complex_1e2f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_1d3b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-4d8e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus_out_164b {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-6700 {
    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);
}

.panel_iron_83f0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_5c1f {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-1979 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid-1979 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solid-1979 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-ed78 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.static-ed78:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-23e4 {
    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);
}

.alert-yellow-92c4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.basic_ce5a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.description-old-3d41 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-old-3d41.new-fe1d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.description-old-3d41.caption-solid-1ef0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.description-old-3d41.wood_ab09 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.center_fa58 {
    padding: 1.5rem;
    text-align: center;
}

.preview-9aa7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.header-deba {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.header-deba .tooltip_brown_f45e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.row-dynamic-a8f9 {
    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);
}

.row-dynamic-a8f9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link-52e0 {
  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);
}

.card-1b80 {
    text-align: center;
}

.card-1b80 .paragraph_3d4f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.card-1b80 .mask_be59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.picture-8208 { text-align: center; }
.copper-f33f { text-align: left; }
.image_464f { text-align: right; }

.stale-a676 { margin-bottom: 0; }
.sidebar-wide-4513 { margin-bottom: 0.5rem; }
.fixed_5ef0 { margin-bottom: 1rem; }
.pro_c708 { margin-bottom: 1.5rem; }
.badge-26b4 { margin-bottom: 2rem; }

.label-f1fc { margin-top: 0; }
.focused_64d1 { margin-top: 0.5rem; }
.narrow-ed13 { margin-top: 1rem; }
.smooth-cde4 { margin-top: 1.5rem; }
.hover-thick-f5c9 { margin-top: 2rem; }

.fn-hidden-b298 { display: none; }
.fn-visible-b298 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .frame-b6a6 {
        padding: 6rem 0 3rem;
    }
    
    .fluid_2e59 {
        text-align: center;
    }
    
    .backdrop_4628 {
        text-align: center;
    }
    
    .focused_b194 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .search_edc7,
    .west_9708,
    .selected-e3f1,
    .row_1cbd {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .frame-b6a6 {
        background: none;
    }
}

/* Providers Section */
.fixed-31ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_3b70 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_3b70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture_3b70 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-warm-c42d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-warm-c42d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard_cdfb {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media_south_50a8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.last_176b {
    list-style: none;
    padding: 0;
}

.last_176b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.last_176b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.green-d987 {
    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);
}

.green-d987 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.disabled-in-1c6d {
    padding: var(--section-padding);
}

.mask-82ed {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-82ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-d553 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pro-d553:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.west_b5d8 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tooltip-e257 {
    display: flex;
    flex-direction: column;
}

.secondary-8f50 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.active-ff34 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.preview-gas-5ce2 {
    color: var(--accent-color);
}

.tertiary-a992 {
    font-size: 1.25rem;
}

.nav-2b8e {
    margin-bottom: 1rem;
}

.nav-2b8e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.layout_8ab5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.filter_c500 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.bronze-dae4 {
    text-align: center;
}

.paragraph_3d4f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_be59 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.steel-788b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_c4d0 {
    margin: 2rem 0;
}

.east-84a3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.east-84a3 .texture-silver-75db {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_fad4 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.clean-1cc1 {
    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;
}

.clean-1cc1:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.plasma-87ef {
    font-size: 2rem;
}

.title-warm-35b0 {
    display: flex;
    flex-direction: column;
}

.message-301f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.overlay_orange_c72b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.fluid_a5c2 {
    padding: var(--section-padding);
}

.west_bd80 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .west_bd80 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west_bd80 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_a07d {
    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);
}

.photo_a07d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_a07d .paragraph_3d4f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.photo_a07d .mask_be59 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.photo_a07d .focused-da7e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.liquid_60d4 {
    margin-top: 4rem;
}

.upper-8d57 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.accordion_fc6f {
    overflow-x: auto;
}

.element_0d0b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.element_0d0b thead {
    background: var(--accent-color);
}

.element_0d0b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.element_0d0b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.element_0d0b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.element_0d0b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.aside-7543 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-60ab {
    max-width: 900px;
    margin: 0 auto;
}

.form_hard_7bc7 {
    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);
}

.form_hard_7bc7:hover {
    border-color: var(--accent-color);
}

.image-5b02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.image-5b02 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.top-d4f2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.form_hard_7bc7.fn-active-b298 .top-d4f2 {
    transform: rotate(45deg);
}

.shade_mini_d80a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.form_hard_7bc7.fn-active-b298 .shade_mini_d80a {
    max-height: 1000px;
}

.shade_mini_d80a p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.footer-east-a447 {
    padding: var(--section-padding);
}

.south-d040 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.label_liquid_ab0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-44be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-44be {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled-warm-e79e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-south-7afd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hard-c75f {
    font-size: 2rem;
}

.outline_advanced_5663 {
    color: var(--text-white);
    margin: 0;
}

.south_3175 {
    list-style: none;
    padding: 0;
}

.south_3175 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.south_3175 li:last-child {
    border-bottom: none;
}

.photo-wide-0418 {
    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);
}

.photo-wide-0418 p {
    color: var(--success-color);
    margin: 0;
}

.pagination_5dc0 {
    margin-top: 3rem;
}

.soft_5d6a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.media-hard-a9de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media-hard-a9de {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget-current-293e {
    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);
}

.gold_be04 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.widget-current-293e p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.content-bright-7db8 {
    padding: var(--section-padding);
}

.under_d0ff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_d0ff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-e0ad {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.steel-e0ad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nav-fixed-224a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.short-6fff {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.notice_paper_de9a {
    flex: 1;
}

.form_stale_de0d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pattern_8da0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.stale_fbcc {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-77c5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-77c5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.widget-gold-af97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.mask-0e83 {
    padding: var(--section-padding);
}

.article-selected-e47d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.tooltip-tall-f472 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-tall-f472 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-f507 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_1f85, .table_c7e7, .label-9bbb {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.label-9bbb {
    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 */
.focused-44af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action-abb0 {
    margin: 2rem 0;
}

.accent-copper-714e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_slow_91fe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shadow-easy-d829 {
    list-style: none;
    padding: 0;
}

.shadow-easy-d829 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;
}

.shadow-easy-d829 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.shadow-easy-d829 li:last-child {
    border-bottom: none;
}

.short-5367 {
    text-align: center;
    margin-top: 2rem;
}

.tertiary_ec83 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.simple_05e9 {
    padding: var(--section-padding);
}

.hero_static_802d {
    margin: 2rem 0;
}

.outline_5caa {
    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) {
    .outline_5caa {
        flex-direction: column;
        align-items: flex-start;
    }
}

.outline_5caa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb-tiny-b8ac {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.copper_b37d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.card_e7cb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heading_9f44 {
    flex: 1;
}

.thick_94c0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.dark_17ce {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.breadcrumb_dirty_c859 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dim_6195 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .dim_6195 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.old-d23f {
    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);
}

.old-d23f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.old-d23f .paragraph_3d4f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old-d23f .mask_be59 {
    color: var(--text-gray);
    font-size: 1rem;
}

.accent_narrow_9868 {
    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);
}

.label_9de9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.label_9de9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.background_1e0a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .background_1e0a {
        grid-template-columns: 1fr 1fr;
    }
}

.text-copper-d1b0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_tiny_d897 {
    margin-bottom: 1.5rem;
}

.outline_tiny_d897 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.outline_tiny_d897 input,
.outline_tiny_d897 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;
}

.outline_tiny_d897 input:focus,
.outline_tiny_d897 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.current_b031 {
    width: 100%;
    margin-top: 1rem;
}

.soft_35b3 {
    display: flex;
    align-items: center;
}

.hover-bright-8e46 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.surface_a3a0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.text-e9e9 {
    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;
}

.soft-3c03 {
    color: var(--text-gray);
}

.form-west-c95b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.breadcrumb_dim_05eb {
    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);
}

.breadcrumb_dim_05eb p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tertiary_simple_d822 {
    margin-top: 3rem;
}

.module_02af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.frame_fresh_9f6f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-south-d20e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.picture-6f61 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-6f61:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.grid-pro-4866 {
    padding: var(--section-padding);
}

.right_fb8b {
    margin: 2rem 0;
}

.gallery-gas-f4a9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.menu-advanced-5e8c {
    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;
}

.menu-advanced-5e8c:hover, .menu-advanced-5e8c.fn-active-b298 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.medium_846b {
    display: none;
}

.medium_846b.fn-active-b298 {
    display: block;
}

.right-9e67 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-prev-b2dd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph_fresh_e1da h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.paragraph_fresh_e1da ul {
    list-style: none;
    padding: 0;
}

.paragraph_fresh_e1da ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.paragraph_fresh_e1da ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dropdown-slow-329a {
    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 */
.focus_under_7b54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-cool-6565 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_6df6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.black-a49e {
    color: var(--accent-color);
    margin: 0;
}

.preview_focused_6ec4 {
    display: flex;
    gap: 1.5rem;
}

.thumbnail-383f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notice_9457 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.footer-simple-c921 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-simple-c921.message-prev-1537 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.footer-simple-c921.notification-feeb {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.footer-simple-c921.list-fd57 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.label_d5b8 {
    margin-top: 2rem;
}

.new-ebd6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row_8add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .row_8add {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-13a8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.simple_8926 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.caption-next-a356 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.preview-smooth-63bc {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.highlight_clean_db2f {
    padding: var(--section-padding);
}

.wood_3ad1 {
    margin: 2rem 0;
}

.video-1944 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.top_880a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.button-over-4e9c {
    list-style: none;
    padding: 0;
}

.button-over-4e9c 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;
}

.button-over-4e9c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.button-over-4e9c li:last-child {
    border-bottom: none;
}

.progress-765d {
    margin: 2rem 0;
}

.easy-0a82 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dim-68c2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim-68c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link_hot_a63b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-lite-5621 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.east-f751 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.frame-purple-c28a {
    margin-top: 2rem;
}

.accent_44ef {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.column-55e9 {
    list-style: none;
    padding: 0;
}

.pink-5c1a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.pink-5c1a a {
    color: var(--accent-color);
    text-decoration: none;
}

.pink-5c1a a:hover {
    text-decoration: underline;
}

.block-ab44 {
    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 */
.header_a0b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_steel_5f7e {
    margin: 2rem 0;
}

.fast-0f78 {
    margin-bottom: 3rem;
}

.fast-0f78 .image_slow_91fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-5485 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.center-b8a8 {
    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);
}

.center-b8a8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.box-paper-cf23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .box-paper-cf23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-right-4276 {
    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 */
.pagination-left-9e25 {
    padding: var(--section-padding);
}

.shadow_b6f9 {
    margin: 2rem 0;
}

.preview-cold-29cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.red-7299 {
    overflow-x: auto;
    margin: 2rem 0;
}

.soft_03bd {
    background: rgba(6, 182, 212, 0.1) !important;
}

.section_f317 {
    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;
}

.carousel_1767 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.modal-hard-7a2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .modal-hard-7a2e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_a9ce {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_a9ce .texture-silver-75db {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.footer_a9ce .hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.upper_4311 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.north_3dcf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-9c5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-9c5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-21c3 {
    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;
}

.right-21c3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.basic_e545 {
    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);
}

.label-under-b4a3 {
    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;
}

.overlay_4153 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.simple_06b3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.border-out-bfb2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.wide_de0f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module_iron_325d {
    color: var(--text-white);
    font-weight: 600;
}

.overlay-b6dc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button_8aa5 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button_8aa5 .cool-88f0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.outer_6d18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outer_6d18 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-ce1a {
    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);
}

.medium-ce1a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium-ce1a .paragraph_3d4f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.medium-ce1a .mask_be59 {
    color: var(--text-gray);
    font-size: 1rem;
}

.heading_lite_db6c {
    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);
}

.preview-purple-9e91 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.preview-purple-9e91 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.new-be8e {
    margin: 2rem 0;
}

.hero-a35c {
    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);
}

.hero-a35c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.layout-bottom-a6dc {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article_slow_c49d {
    flex: 1;
}

.block-f25c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink_676f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.caption_b772 {
    margin: 2rem 0;
}

.overlay_5e41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_5e41 .hover_thick_a604 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.overlay_5e41 .module-5dc5 {
    color: var(--text-gray);
    margin: 0;
}

.small-7943 {
    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);
}

.small-7943 .notification-f513 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.upper_4311 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.small_45f0 {
    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;
}

.alert_904f {
    flex: 1;
}

.white_dece {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.gradient_lite_fcb7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.component_bb04 {
    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;
}

.content-huge-6f63 {
    flex: 1;
}

.input-purple-f34f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.banner-3466 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.column-43cd {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.article_bronze_2560 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.image-stale-27ed {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.image-stale-27ed .cool-88f0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accordion-upper-526e {
    margin-top: 2rem;
}

.accordion-upper-526e .soft_5d6a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.video-solid-4c1c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-hot-5c64 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .focus-hot-5c64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-hot-5c64 .bronze-dae4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-7c68 {
    margin: 2rem 0;
}

.panel-motion-0b89 {
    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 */
.fresh-e43d {
    padding: var(--section-padding);
}

.active_dirty_7940 {
    margin-top: 1rem;
}

.table_7fae {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.table_7fae li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.table_7fae li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.background-81c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_d459 {
    margin: 2rem 0;
}

.tertiary-37eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.accent-03e0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dynamic_ceb5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.wide_55b3 {
    margin: 2rem 0;
}

.middle-f7d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.middle-f7d8 .image_slow_91fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module-small-0c15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module-small-0c15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-d27a {
    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);
}

.container-complex-05a7 {
    color: var(--text-white);
    font-weight: 600;
}

.cool_bd03 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.carousel_pro_fac1 {
    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);
}

.carousel_pro_fac1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.pagination-old-27ef {
    padding: var(--section-padding);
}

.pink-f5f9 {
    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;
}

.pink-f5f9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.picture_selected_6a9f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture_selected_6a9f .gold_be04 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_selected_6a9f .link-middle-00c3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.iron-47bf {
    flex: 1;
}

.background-e483 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.left_f678 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left_f678 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.left_f678 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.old-8fdd {
    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);
}

.old-8fdd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.old-8fdd strong {
    color: var(--warning-color);
}

/* Slots Section */
.small_68c5 {
    padding: var(--section-padding);
}

.paragraph-fresh-ddca {
    margin: 2rem 0;
}

/* Table Games Section */
.yellow-5683 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tall-c078 {
    margin: 2rem 0;
}

.alert_short_88a8 {
    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);
}

.alert_short_88a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.alert_short_88a8 .center-5b44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert_short_88a8 .section-2942 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.orange_d34e {
    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);
}

.orange_d34e .notification-f513 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.gradient_lite_2f52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_b5ff {
    margin: 2rem 0;
}

.video-eebe {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-new-5011 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.carousel-rough-6919 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected_e581 {
    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);
}

.selected_e581:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.selected_e581.fn-active-b298 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_short_d001 {
    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);
}

.pink-3bb6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pink-3bb6 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.sidebar_smooth_f50b {
    padding: var(--section-padding);
}

.lite_a3bb {
    margin: 2rem 0;
}

.block-pro-cc86 {
    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);
}

.block-pro-cc86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .block-pro-cc86 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hover_db49 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.disabled_under_8717 {
    flex: 1;
}

.tooltip-45c7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.accordion_purple_c63d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.status_aaf2 {
    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;
}

.carousel-1fb5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup_61eb {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.medium_fa81 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search-plasma-2962 {
    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;
}

.search-plasma-2962:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.content_fc79 {
    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);
}

.mask-fresh-8507 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask-fresh-8507 strong {
    color: var(--accent-color);
}

/* New Games Section */
.chip-out-349d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner-e15f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .inner-e15f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner-e15f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-5f85 {
    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;
}

.dynamic-5f85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.old_88ef {
    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;
}

.gas-0087 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.cold_9cac {
    font-size: 2rem;
}

.menu_simple_b602 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.disabled-lower-9acb {
    flex: 1;
}

.advanced_0d22 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.description-622a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.notice_fe02 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon_small_68e2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stale-78b4 {
    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;
}

.notice_c47d {
    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;
}

.notice_c47d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.notification_solid_38ca {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-756c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow_b855 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .slow_b855 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_3239 {
    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);
}

.paper-a406 {
    color: var(--text-white);
    font-weight: 600;
}

.narrow-81cb {
    color: var(--accent-color);
    font-weight: 600;
}

.top_6105 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.top_6105 strong {
    color: var(--accent-color);
}

/* Security Section */
.row-purple-4dad {
    padding: var(--section-padding);
}

/* Benefits Section */
.nav_a6a9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.container_ecc6 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.blue_f0d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_gold_c425 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.orange_8b36 {
    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) {
    .orange_8b36 {
        flex-direction: column;
        gap: 1rem;
    }
}

.orange_8b36:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.orange_8b36 .component_bb04 {
    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;
}

.orange_8b36 .content-huge-6f63 {
    flex: 1;
}

.orange_8b36 .input-purple-f34f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.orange_8b36 .banner-3466 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar_right_9dfe {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_right_9dfe .thick_7271 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_right_9dfe .current-22ef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_right_9dfe .current-22ef li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sidebar_right_9dfe .current-22ef li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.orange-fb10 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dropdown-3ca1 {
    padding: var(--section-padding);
}

.full_eec3 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .full_eec3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass_0a05 {
    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);
}

.glass_0a05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.glass_0a05 .accent_14f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.glass_0a05 .backdrop_de8c {
    flex: 1;
}

.glass_0a05 .slider-40a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass_0a05 .status_9f66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pink-14c4 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-14c4 .simple_8f9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink-14c4 .complex-1c30 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.pink-14c4 .complex-1c30 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);
}

.pink-14c4 .complex-1c30 li:last-child {
    border-bottom: none;
}

.pink-14c4 .complex-1c30 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;
}

.pink-14c4 .complex-1c30 li strong {
    color: var(--text-white);
}

.focus-motion-e174 {
    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);
}

.focus-motion-e174 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus-motion-e174 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.white-c9d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_3fd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .badge_3fd1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wood_c93b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wood_c93b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.simple_12e6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-5389 {
    font-size: 2rem;
}

.paper-da5f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right-fa6b {
    flex: 1;
}

.gallery_c0d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_c0d0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gallery_c0d0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.box-focused-59c4 {
    margin-top: 3rem;
}

.video-1944 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.top_880a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-over-4e9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-over-4e9c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button-over-4e9c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button-over-4e9c li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.paper-2e99 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_narrow_b9b3 {
    margin: 2rem 0;
}

.header-medium-beba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.header-medium-beba .image_slow_91fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim-2a5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim-2a5d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-stone-607a {
    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);
}

.section-stone-607a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.disabled-c0c8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.label-c6dc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.card-prev-9454 {
    padding: var(--section-padding);
}

.icon-a9b0 {
    margin: 2rem 0;
}

.over-5557 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .over-5557 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over-5557 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-short-28d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.form-short-28d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_f85d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tag_91fe {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.notice-4e31 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-4e31.row_8521 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.notice-clean-9639 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.texture-0ed9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.out-3629 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-96c4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.article_white_28b8 {
    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);
}

.article_white_28b8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article_white_28b8 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.red_44d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-gas-f419 {
    margin: 2rem 0;
}

.hard_aad7 {
    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) {
    .hard_aad7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hard_aad7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard_aad7::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);
}

.list-6808 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.focus-hovered-58b7 {
    flex: 1;
}

.dropdown_medium_ecb8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-large-2d93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-large-2d93 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_cf48 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-be98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider_09bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider_09bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_21f7 {
    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);
}

.box_985b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.photo-e675 {
    flex: 1;
}

.last-bf01 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.thumbnail-black-4819 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.menu_down_66c4 {
    margin-top: 2rem;
    text-align: center;
}

.over_54a6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.over_54a6 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.dirty-dcd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-dcd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_silver_85eb {
    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);
}

.summary_silver_85eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary_silver_85eb .gold-a5b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_silver_85eb .highlight_42b5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.summary_silver_85eb .paragraph-medium-2aaf {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.summary_silver_85eb .nav_f12f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.link-bright-7451 {
    padding: var(--section-padding);
}

.hover-c83c .block-black-a735 {
    flex: 1;
}

/* Promo Calendar Section */
.dim-11ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-pressed-23f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-pressed-23f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-upper-5c10 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white_e17b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.nav_motion_1740 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tiny_775f {
    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);
}

.backdrop_basic_1996 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy-0cc0 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.form-fluid-c443 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.form-fluid-c443 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form-fluid-c443 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.focused_e7f9 {
    padding: var(--section-padding);
}

.header_out_6fbf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header_out_6fbf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-dcb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_812c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_d982 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_d982 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.box-31c6 {
    margin-top: 3rem;
}

.box-31c6 .video-1944 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.box-31c6 .top_880a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box-31c6 .button-over-4e9c {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.box-31c6 .button-over-4e9c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.box-31c6 .button-over-4e9c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.box-31c6 .button-over-4e9c li strong {
    color: var(--warning-color);
}

.full-7662 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full-7662 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.table_43e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-3583 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-3583 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_bffc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_bffc .image_slow_91fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.breadcrumb_hard_e806 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagination-current-f334 {
    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);
}

.pagination-current-f334:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.soft_e8a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-b375 {
    flex: 1;
}

.detail-4cea {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.heading_79e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.title_aad2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.steel-0aa0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.avatar_current_52a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .avatar_current_52a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-4eb1 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade-4eb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row_828e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade-next-454c {
    color: var(--text-gray);
    font-size: 1rem;
}

.label_9de9 {
    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);
}

.grid_full_ada0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.grid_full_ada0 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.message_wide_fe25 { 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; }
.widget_f32a, .popup-85bb { max-width:100%; height:auto; }

.block-b0df, .outline_rough_87ad, .active-e781 { white-space:normal; }

.fluid_2e59,
.backdrop_4628,
.image-large-2c09,
.dirty-dcd3,
.caption_b772,
.solid-1979 {
  flex-wrap:wrap;
}

[class*="grid"],
.avatar_current_52a1,
.over-5557,
.popup-next-7e5a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.frame-b6a6 img,
.backdrop_4628 img,
.box-20e1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.solid_30c9, .dynamic_5d06,
.wood_3311, .over_74d3 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.accordion_fc6f { width:100%; overflow-x:auto; }
.accordion_fc6f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.picture_3b70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .picture_3b70 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.link-warm-c42d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.west_bd80,
.content-paper-d659,
.label_b67f,
.tabs-mini-638e,
.dim_6195,
.avatar_current_52a1,
.over-5557,
.popup-next-7e5a,
.link-52e0,
.lite_a3bb,
.picture_3b70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .west_bd80,
  .content-paper-d659,
  .label_b67f,
  .tabs-mini-638e,
  .dim_6195,
  .avatar_current_52a1,
  .over-5557,
  .popup-next-7e5a,
  .link-52e0,
  .lite_a3bb,
  .picture_3b70 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.photo_a07d,
.old-d23f,
.shade-4eb1,
.dim_247b,
.form-short-28d6,
.card-1b80,
.block-pro-cc86,
.link-warm-c42d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.medium-3bb0,
.plasma_88ed,
.layout-out-759e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.medium-3bb0 > *,
.plasma_88ed > *,
.layout-out-759e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f3ce */
.widget-item-c4 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
