/* {$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;
}

.layout-db72 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.shadow_motion_53c8 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .shadow_motion_53c8 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shadow_motion_53c8 {
        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 */
.blue_6f43 {
    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);
}

.inner-82ea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .inner-82ea {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .photo-5a53 {
        grid-column: 1;
    }
    
    .section_6f3a {
        grid-column: 2;
    }
    
    .tag-15bb {
        grid-column: 3;
    }
}

.photo-5a53 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.photo-5a53:hover img {
    transform: scale(1.05);
}

/* Navigation */
.video_light_2076 {
    display: none;
}

@media (min-width: 1024px) {
    .video_light_2076 {
        display: block;
    }
}

/* Grouped Navigation */
.backdrop_9b3a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.middle-ac12 {
    position: relative;
}

.advanced-a2af {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.middle-ac12 .tertiary-advanced-7914 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tertiary-advanced-7914 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.highlight_static_2e48 {
    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;
}

.highlight_static_2e48:hover,
.highlight_static_2e48.fn-active-feb6 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.status-34fd {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .status-34fd {
        display: flex;
    }
}

/* Mobile Register Button */
.section_6f3a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .section_6f3a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.header_0071 {
    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;
}

.header_0071::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 */
.tag-15bb {
    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) {
    .tag-15bb {
        display: none;
    }
}

.tag-15bb span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tag-15bb.fn-active-feb6 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tag-15bb.fn-active-feb6 span:nth-child(2) {
    opacity: 0;
}

.tag-15bb.fn-active-feb6 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.gradient-inner-85f8 {
    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;
}

.gradient-inner-85f8.fn-active-feb6 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.component-f5f5 {
    overflow: hidden;
}

.slider_under_8847 {
    list-style: none;
    padding: 0.75rem 0;
}

.section_f0e1 {
    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;
}

.section_f0e1:hover,
.section_f0e1.fn-active-feb6 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.section_f0e1.avatar_smooth_cfdc {
    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;
}

.section_f0e1.avatar_smooth_cfdc::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 */
.iron_409b {
    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;
}

.stale-8405 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.stale-8405:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.new-6179 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.new-6179:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gradient_9f98 {
    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;
}

.gradient_9f98:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.motion-5325 {
    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;
}

.detail_61a2 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.detail_61a2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.bronze_10d3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.bronze_10d3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.old_69d4 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.old_69d4: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);
}

.message_176c {
    font-size: 1em;
    font-weight: 700;
}

.status-tall-b164 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hidden_10ba {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hidden_10ba::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;
}

.grid-liquid-5bce {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .grid-liquid-5bce {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.tooltip-wide-189c {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.focus-hot-b3af {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.black_d193 {
    margin-bottom: 2rem;
}

.outline_c843 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .outline_c843 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-fixed-66dd {
    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);
}

.table-77b2 {
    font-size: 1.5rem;
}

.detail-88b5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.alert-right-1d9d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini_2ab0 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.mini_2ab0:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.focused_dec9 {
    text-align: center;
    margin-bottom: 3rem;
}

.tertiary-top-c87c {
    margin-bottom: 1rem;
}

.sidebar-simple-0616 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.table_dim_5522 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .table_dim_5522 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .table_dim_5522.popup-narrow-19dc {
        direction: rtl;
    }
    
    .table_dim_5522.popup-narrow-19dc > * {
        direction: ltr;
    }
}

.action_4f19 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.action_4f19:first-child {
    margin-top: 0;
}

.rough-ec17 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hard-ec5f {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hard-ec5f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.fixed_7420 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_7420 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_2350 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.soft-2153 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bottom_d2e5 {
    list-style: none;
}

.bottom_d2e5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom_d2e5 li:last-child {
    border-bottom: none;
}

/* Games Features */
.brown_64a7 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shadow-large-ddc4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.component_top_4e89 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.article-fb6f {
    margin: 2rem 0;
}

.row_71a0 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.north-018b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.out-f861 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.message_0b7f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.motion-5a5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-5a5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_lower_691f {
    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);
}

.popup_lower_691f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.blue_c5f5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bright-47f7 {
    font-size: 1.5rem;
}

.full-3e5f {
    color: var(--accent-color);
    margin: 0;
}

.green_cb2e {
    list-style: none;
}

.green_cb2e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.green_cb2e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.aside-4ca0 {
    margin: 2rem 0;
}

.prev-224b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.input-f36a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .input-f36a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-narrow-fb54 {
    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);
}

.stone_d042 {
    font-size: 1.25rem;
}

.picture_complex_f98c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.photo-medium-4ed4,
.highlight_57d8 {
    text-align: center;
    margin: 2rem 0;
}

.label-soft-421e,
.up_5953 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.sidebar-09c2 {
    margin: 2rem 0;
    text-align: center;
}

.avatar_orange_12ad {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.avatar_orange_12ad::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;
}

.section-3078 {
    position: relative;
    z-index: 1;
}

.info_easy_3dd0 {
    margin-bottom: 1rem;
}

.south-c28f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.green-de19 {
    margin-bottom: 3rem;
}

.last_09d3 {
    margin-top: 3rem;
}

.header-064d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .header-064d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-064d .chip-fixed-66dd {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.card_current_c7b6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section_c336 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.thick_6981 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.accordion_glass_b908 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .accordion_glass_b908 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion_glass_b908 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.preview-0d37 {
    margin-bottom: 1rem;
}

.texture_hard_4f19 img {
    margin-bottom: 1rem;
}

.icon_1ce7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-1754 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.dropdown-7c35 {
    list-style: none;
}

.dropdown-7c35 li {
    margin-bottom: 0.5rem;
}

.dropdown-7c35 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-7c35 a:hover {
    color: var(--accent-color);
}

.backdrop-lower-c0c9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar-static-7907 {
    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);
}

.sidebar-static-7907:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pro-c481 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pro-c481 p {
    margin-bottom: 0.25rem;
}

.background_3bae {
    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) {
    .background_3bae {
        flex-direction: row;
    }
}

.pink_3147 {
    text-align: center;
}

@media (min-width: 768px) {
    .pink_3147 {
        text-align: left;
    }
}

.pink_3147 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.solid_3b02 {
    font-size: 0.75rem !important;
}

.avatar_up_bba6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.shade-fe37 {
    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);
    }
}

.liquid_1203 {
    animation: fadeInUp 0.6s ease-out;
}

.wide_ebda {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.link-action-6a35 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-action-6a35 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.accordion_east_a3f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_east_a3f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma_e5ec {
    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);
}

.plasma_e5ec .component_top_4e89 {
    font-size: 1.25rem;
}

.plasma_e5ec .grid-17ee {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.block-outer-1406 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-outer-1406 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_dark_2409 {
    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);
}

.section_dark_2409:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-6dae {
    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);
}

.main_light_1fe2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination-hovered-4822 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_white_894c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_hot_e921 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_hot_e921 .gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_hot_e921 .header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_west_7213 {
    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);
}

.description_b4e3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.description_b4e3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.description_b4e3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.focus-static-c33f {
    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);
}

.preview-1841 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pink-099d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pink-099d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pink-099d 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);
}

.pink-099d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pink-099d input::placeholder {
    color: var(--text-muted);
}

.dropdown_353e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.content_purple_ed27 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.content_purple_ed27 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pro-eccc {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pro-eccc:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.input-f36a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-f36a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-narrow-fb54 {
    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);
}

.carousel-narrow-fb54 .stone_d042 {
    font-size: 1.25rem;
}

.carousel-narrow-fb54 .picture_complex_f98c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.column-8ba2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-top-7887 {
    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);
}

.message-top-7887 .component_top_4e89 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-top-7887 .gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.message-top-7887 .header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_c2d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light-f118 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.light-f118 .header-complex-0ac2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light-f118 .button-bright-0549 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_04af {
    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);
}

.bronze-92df {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze-92df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_0b8c {
    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);
}

.element_0b8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_red_8400 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.container_gas_f86d {
    flex: 1;
}

.tag_red_211a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shade_medium_2b97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-over-1cd7 {
    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);
}

.form-over-1cd7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.fast_0591 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_0591 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_large_e6a2 {
    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);
}

.block_large_e6a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_8ecd {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_869f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wide-b0c4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.container-238d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.disabled_iron_b95c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-9eb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-f54c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border-f54c .menu_medium_2f6e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-f54c .frame_29d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-gold-8848 {
    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);
}

.frame_slow_1b7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_copper_a21f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_copper_a21f .component_top_4e89 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_copper_a21f .gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_copper_a21f .header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_new_ca9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_new_ca9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_focused_0317 {
    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);
}

.button_focused_0317:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.outline-center-d6f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-center-d6f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_1fa8 {
    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);
}

.column_1fa8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-7908 {
    font-size: 2rem;
    flex-shrink: 0;
}

.east_0e1a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.north-018b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.dropdown_9a33 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.caption-ad03 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_3f0b {
    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);
}

.solid_3f0b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_f9c5 {
    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);
}

.text-59e0 {
    flex: 1;
}

.breadcrumb_db88 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-top-a975 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.border_6dc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_b428 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny-e9f0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-e9f0 .header-complex-0ac2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny-e9f0 .button-bright-0549 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_57d8 {
    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);
}

.white-a427 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white-a427 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.description_65ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_65ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel-0cd9 {
    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);
}

.steel-0cd9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_old_86a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.inner_34a6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info_dirty_edd8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline-7448 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.caption_outer_985e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_92e0 {
    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_warm_e97e {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav-gold-838d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark_22e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_slow_1b7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_copper_a21f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.backdrop_copper_a21f .gradient-bronze-c1e2 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop_copper_a21f .header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-5545 {
    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);
}

.west-b6ce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west-b6ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west-b6ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_5543 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.picture_5543:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_old_224f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.white_d972 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.yellow-f7c9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notice-plasma-cff3 {
    padding: 1.5rem;
}

.primary-hard-5b30 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.soft_2af1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soft_2af1 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;
}

.soft_2af1 li:last-child {
    border-bottom: none;
}

.soft_2af1 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.pattern-3a03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-3a03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_right_19d4 {
    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);
}

.shadow_right_19d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-f5a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-4055 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popup-2a28 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.table_copper_c5b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pro_7997 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_92af {
    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);
}

.hero_tiny_9053 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_f5f1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_green_8fb0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-c984 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.main-1f4a {
    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);
}

.iron-5f55 {
    text-align: center;
}

.aside_silver_521e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_320c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next_7a06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_wide_469b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_wide_469b .gradient-bronze-c1e2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_wide_469b .header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-wood-ff41 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-wood-ff41 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-wood-ff41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-716f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hard-716f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_341f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.easy-1bf0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.white-a7c4 {
    padding: 1.5rem;
}

.header-huge-4f99 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.upper_5f75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper_5f75 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;
}

.upper_5f75 li:last-child {
    border-bottom: none;
}

.upper_5f75 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.slow_f121 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.yellow-5d17 {
    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);
}

.yellow-5d17:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-c174 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_84c7 {
    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);
}

.media-6dae {
    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;
}

.main_light_1fe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination-hovered-4822 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-north-c505 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new_a04a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-4139 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small_3b46 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.upper_ca20 {
    display: flex;
    gap: 1rem;
}

.upper_ca20 .modal-6a91 {
    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;
}

.hidden_east_a739 {
    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);
}

.warm-86a0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bright-df4f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright-df4f 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;
}

.bright-df4f li:last-child {
    border-bottom: none;
}

.bright-df4f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.west-20b1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west-20b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west-20b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_gold_330f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.logo_gold_330f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-soft-750a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-right-ae81 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.menu_medium_2f6e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.image_down_d642 {
    font-size: 1rem;
}

.wrapper_plasma_486a {
    padding: 1.5rem;
}

.frame_29d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.notice_a770 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.notice_a770 .iron-5f55 {
    text-align: center;
}

.notice_a770 .cold_320c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.notice_a770 .static-ae93 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.modal_wood_feb4 {
    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);
}

.modal_wood_feb4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.component_fluid_6f8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_fluid_6f8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-e124 {
    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);
}

.advanced-e124:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_dark_fdc9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark-b92a {
    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);
}

.stone_b31f {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_79a5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion_0822 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_c440 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gas-54e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-3ca8 {
    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);
}

.thumbnail-fixed-457b {
    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;
}

.thumbnail-fixed-457b.narrow_be15 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.thumbnail-fixed-457b.motion-d87d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.thumbnail-fixed-457b.aside-action-71ff {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.thumbnail-fixed-457b.current_6c0a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.thumbnail-fixed-457b.hot-2c20 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.backdrop_slow_ea0b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex-888c {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_dim_0af0 {
    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);
}

.texture_01af {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.header_c2d6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_c2d6 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;
}

.header_c2d6 li:last-child {
    border-bottom: none;
}

.header_c2d6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.gallery-0880 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-0880 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-0880 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-slow-9cd1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-slow-9cd1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-slow-9cd1.header_faa0 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .feature-slow-9cd1.header_faa0 {
        grid-column: span 3;
    }
}

.sort_inner_2e93 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.feature-slow-9cd1.header_faa0 .sort_inner_2e93 {
    background: rgba(6, 182, 212, 0.1);
}

.card-medium-7e7d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.motion-f593 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.feature-slow-9cd1.header_faa0 .motion-f593 {
    color: var(--info-color);
}

.feature_yellow_bdfc {
    padding: 1.5rem;
    text-align: center;
}

.paragraph_63e8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-slow-9cd1.header_faa0 .paragraph_63e8 {
    color: var(--info-color);
}

.breadcrumb_next_3cd3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hover_wide_54f0 {
    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 */
.next_05d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_05d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-complex-c5e8 {
    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);
}

.article-complex-c5e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-7256 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-top-7887 {
    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);
}

.stone_d042 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-5342 {
    flex: 1;
}

.prev-224b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container-silver-75e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-gas-ed3a {
    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);
}

.carousel_e11d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hidden_366c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shade-fe37 {
    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);
}

.sort-bea9 {
  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);
}

.sort-bea9 .iron-5f55 {
    text-align: center;
}

.sort-bea9 .aside_silver_521e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.sort-bea9 .cold_320c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.medium-b82d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-thick-4456 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_5c6d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel-e750 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_up_22f5 {
    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);
}

.frame-fluid-bf13 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_e7a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black_acb2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .black_acb2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_acb2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blue_3198 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.blue_3198:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_0a17 {
    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);
}

.active-2b2a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tag_b4ec {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.inner_2b01 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner_2b01.feature_ee00 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.inner_2b01.dynamic_5c88 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.inner_2b01.tooltip_fluid_698f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.section_af38 {
    padding: 1.5rem;
    text-align: center;
}

.image_d5dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary_473a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.secondary_473a .selected_a639 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.over_c904 {
    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);
}

.over_c904:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.preview-white-6f4e {
  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);
}

.outline-fresh-1d7f {
    text-align: center;
}

.outline-fresh-1d7f .aside_silver_521e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.outline-fresh-1d7f .cold_320c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.summary_8006 { text-align: center; }
.icon_2d11 { text-align: left; }
.gallery-6454 { text-align: right; }

.down_9ed9 { margin-bottom: 0; }
.label-1d54 { margin-bottom: 0.5rem; }
.menu_9bc3 { margin-bottom: 1rem; }
.text-top-3724 { margin-bottom: 1.5rem; }
.summary_d6e9 { margin-bottom: 2rem; }

.label_bc44 { margin-top: 0; }
.description-wide-05e4 { margin-top: 0.5rem; }
.cool_f820 { margin-top: 1rem; }
.sort-386f { margin-top: 1.5rem; }
.hero_dirty_1ee1 { margin-top: 2rem; }

.fn-hidden-feb6 { display: none; }
.fn-visible-feb6 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hidden_10ba {
        padding: 6rem 0 3rem;
    }
    
    .grid-liquid-5bce {
        text-align: center;
    }
    
    .table_dim_5522 {
        text-align: center;
    }
    
    .outline_c843 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .blue_6f43,
    .gradient-inner-85f8,
    .avatar_orange_12ad,
    .thick_6981 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hidden_10ba {
        background: none;
    }
}

/* Providers Section */
.dark_4c06 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-a19f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-a19f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-a19f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-8c6c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notification-8c6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.large-ffd4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.caption_blue_8c86 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.label_e377 {
    list-style: none;
    padding: 0;
}

.label_e377 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.label_e377 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.slow_6fd4 {
    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);
}

.slow_6fd4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.search-7297 {
    padding: var(--section-padding);
}

.fluid-8f2f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-8f2f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-a0db {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border-a0db:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature_c70b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.media_16b7 {
    display: flex;
    flex-direction: column;
}

.plasma-17fa {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dark-f3ba {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.new_87dd {
    color: var(--accent-color);
}

.north-ee61 {
    font-size: 1.25rem;
}

.text-fluid-fe88 {
    margin-bottom: 1rem;
}

.text-fluid-fe88 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tall_94fd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.copper_768e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.iron-5f55 {
    text-align: center;
}

.aside_silver_521e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_320c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.section-bright-ba2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-0f54 {
    margin: 2rem 0;
}

.lower_0fdb {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.lower_0fdb .component_top_4e89 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_red_15d7 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.frame-af73 {
    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;
}

.frame-af73:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_medium_b8b3 {
    font-size: 2rem;
}

.wide_cd7f {
    display: flex;
    flex-direction: column;
}

.first-0522 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.frame-up-c6c5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.logo-first-61eb {
    padding: var(--section-padding);
}

.slider-under-5cd9 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider-under-5cd9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider-under-5cd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article_fd42 {
    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);
}

.article_fd42:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.article_fd42 .aside_silver_521e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.article_fd42 .cold_320c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.article_fd42 .disabled_motion_9bf8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.hot-8c9a {
    margin-top: 4rem;
}

.active_bright_9fd9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.huge_aa9a {
    overflow-x: auto;
}

.panel_b99b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel_b99b thead {
    background: var(--accent-color);
}

.panel_b99b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.panel_b99b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_b99b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.panel_b99b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.out-95e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-wide-d8e5 {
    max-width: 900px;
    margin: 0 auto;
}

.under-40a2 {
    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);
}

.under-40a2:hover {
    border-color: var(--accent-color);
}

.element-plasma-cc7e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.element-plasma-cc7e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.east_f3a2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.under-40a2.fn-active-feb6 .east_f3a2 {
    transform: rotate(45deg);
}

.backdrop_2b58 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.under-40a2.fn-active-feb6 .backdrop_2b58 {
    max-height: 1000px;
}

.backdrop_2b58 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.primary_top_635d {
    padding: var(--section-padding);
}

.description_b4e3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.caption-978d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_6b0f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_6b0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-f418 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_paper_d5f5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-6473 {
    font-size: 2rem;
}

.primary-motion-9ecb {
    color: var(--text-white);
    margin: 0;
}

.hard-a397 {
    list-style: none;
    padding: 0;
}

.hard-a397 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-a397 li:last-child {
    border-bottom: none;
}

.primary_6a4c {
    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);
}

.primary_6a4c p {
    color: var(--success-color);
    margin: 0;
}

.picture-82f8 {
    margin-top: 3rem;
}

.warm-86a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bright-5ff7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bright-5ff7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light_a447 {
    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);
}

.title_f384 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.light_a447 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.aside_939e {
    padding: var(--section-padding);
}

.hero-stone-fb56 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-stone-fb56 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_white_8026 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status_white_8026:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.secondary-22a4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fresh_5bf7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tooltip_dcf9 {
    flex: 1;
}

.module-hard-94a7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.photo_north_542d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.fast-cc5c {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-soft-7ba1 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-soft-7ba1:last-child {
    border-bottom: none;
}

/* Comparison Section */
.pink-06f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.hero_rough_42a8 {
    padding: var(--section-padding);
}

.cool_7bb8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.iron_5443 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_5443 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_4089 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-easy-d11b, .shadow_rough_405f, .upper-ece4 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.upper-ece4 {
    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 */
.preview-5dd1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-c347 {
    margin: 2rem 0;
}

.tag_upper_4baa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow-9332 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wrapper_brown_ea9b {
    list-style: none;
    padding: 0;
}

.wrapper_brown_ea9b 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;
}

.wrapper_brown_ea9b li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.wrapper_brown_ea9b li:last-child {
    border-bottom: none;
}

.tertiary-down-eac4 {
    text-align: center;
    margin-top: 2rem;
}

.active_f9ad {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.alert_b9f0 {
    padding: var(--section-padding);
}

.form_c10d {
    margin: 2rem 0;
}

.label-b11d {
    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) {
    .label-b11d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.label-b11d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.video_bright_6a93 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.outer-ee7e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.hero-db10 {
    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;
}

.dropdown-a123 {
    flex: 1;
}

.message-first-e5fc {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.under-e6c0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.south-1411 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.active_fa94 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .active_fa94 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.in_2f20 {
    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);
}

.in_2f20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.in_2f20 .aside_silver_521e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.in_2f20 .cold_320c {
    color: var(--text-gray);
    font-size: 1rem;
}

.tiny-4de5 {
    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);
}

.silver_a94a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.silver_a94a strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.badge-last-c873 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .badge-last-c873 {
        grid-template-columns: 1fr 1fr;
    }
}

.backdrop-dd94 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-wide-d61f {
    margin-bottom: 1.5rem;
}

.label-wide-d61f label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.label-wide-d61f input,
.label-wide-d61f 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;
}

.label-wide-d61f input:focus,
.label-wide-d61f select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph-new-4fb3 {
    width: 100%;
    margin-top: 1rem;
}

.hover-over-3588 {
    display: flex;
    align-items: center;
}

.box-5166 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.info-f861 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.plasma-961e {
    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;
}

.row-1f6e {
    color: var(--text-gray);
}

.panel_yellow_d127 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dropdown_54a3 {
    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);
}

.dropdown_54a3 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.cool-38a0 {
    margin-top: 3rem;
}

.primary-aaa3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.table_upper_e0d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-ac98 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.plasma-c488 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plasma-c488:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.inner-b768 {
    padding: var(--section-padding);
}

.image-new-3ff5 {
    margin: 2rem 0;
}

.picture_tall_1b61 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.list_action_841b {
    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;
}

.list_action_841b:hover, .list_action_841b.fn-active-feb6 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.photo_63a7 {
    display: none;
}

.photo_63a7.fn-active-feb6 {
    display: block;
}

.media_right_d511 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-4d07 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper_a4cc h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.wrapper_a4cc ul {
    list-style: none;
    padding: 0;
}

.wrapper_a4cc ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wrapper_a4cc ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hovered-64f9 {
    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 */
.action-d3d3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new_9d38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-88b1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.paragraph-6bcc {
    color: var(--accent-color);
    margin: 0;
}

.widget_ea65 {
    display: flex;
    gap: 1.5rem;
}

.nav_21ec {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.section-cold-ddf0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.input-8703 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.input-8703.detail_iron_33c7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.input-8703.paragraph-e5ca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.input-8703.icon-2a0f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.motion_2431 {
    margin-top: 2rem;
}

.video_yellow_dec6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled-3dcc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .disabled-3dcc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_d198 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.fluid-d07f {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.detail-9ae9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.component-2abf {
    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 */
.media_66aa {
    padding: var(--section-padding);
}

.texture-active-9e7e {
    margin: 2rem 0;
}

.last-f93c {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.heading_51a1 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.soft_871e {
    list-style: none;
    padding: 0;
}

.soft_871e 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;
}

.soft_871e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.soft_871e li:last-child {
    border-bottom: none;
}

.icon-glass-8da5 {
    margin: 2rem 0;
}

.paragraph_center_f455 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stale_54cb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stale_54cb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thick_cbb3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_405d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wide-ed58 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-2abb {
    margin-top: 2rem;
}

.tag_red_211a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.accordion_dark_ecf5 {
    list-style: none;
    padding: 0;
}

.title-out-6f44 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.title-out-6f44 a {
    color: var(--accent-color);
    text-decoration: none;
}

.title-out-6f44 a:hover {
    text-decoration: underline;
}

.badge_iron_07e8 {
    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 */
.selected_492c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-9b27 {
    margin: 2rem 0;
}

.sort-fc7e {
    margin-bottom: 3rem;
}

.sort-fc7e .narrow-9332 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.warm-1dbd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.content-c3be {
    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);
}

.content-c3be:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.logo-1156 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .logo-1156 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_d081 {
    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 */
.gold_2f0e {
    padding: var(--section-padding);
}

.copper_363a {
    margin: 2rem 0;
}

.active_5368 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.focus-4a8b {
    overflow-x: auto;
    margin: 2rem 0;
}

.module-silver-af15 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.shadow_prev_8fe9 {
    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;
}

.paper-598c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.breadcrumb_plasma_a6de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .breadcrumb_plasma_a6de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-3aeb {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-3aeb .component_top_4e89 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-3aeb .gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_576c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.frame_72a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_c30a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_c30a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_short_7345 {
    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;
}

.avatar_short_7345:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.banner_cb5f {
    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);
}

.content_smooth_4b8c {
    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;
}

.narrow_6ad1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask-center-4dad {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.overlay-b97d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.icon-action-8af6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.out-5bc0 {
    color: var(--text-white);
    font-weight: 600;
}

.alert_631c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message_large_f3d1 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message_large_f3d1 .modal-6a91 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fast-98e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fast-98e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_east_41c3 {
    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);
}

.module_east_41c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_east_41c3 .aside_silver_521e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_east_41c3 .cold_320c {
    color: var(--text-gray);
    font-size: 1rem;
}

.lite-5baf {
    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);
}

.secondary-4787 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.secondary-4787 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.caption_outer_985e {
    margin: 2rem 0;
}

.feature_92e0 {
    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);
}

.feature_92e0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shade_warm_e97e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight_3230 {
    flex: 1;
}

.nav-gold-838d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark_22e0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.frame_slow_1b7c {
    margin: 2rem 0;
}

.backdrop_copper_a21f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_copper_a21f .gradient-bronze-c1e2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.backdrop_copper_a21f .header-huge-4f99 {
    color: var(--text-gray);
    margin: 0;
}

.frame-5545 {
    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);
}

.frame-5545 .label-soft-421e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.filter_576c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.header_f9c5 {
    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;
}

.text-59e0 {
    flex: 1;
}

.info-top-a975 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.border_6dc1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.media-6dae {
    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;
}

.progress_red_808c {
    flex: 1;
}

.main_light_1fe2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pagination-hovered-4822 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.simple-4139 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.small_3b46 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.upper_ca20 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.upper_ca20 .modal-6a91 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hidden_east_a739 {
    margin-top: 2rem;
}

.hidden_east_a739 .warm-86a0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.primary-53e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-1f4a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .main-1f4a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-1f4a .iron-5f55 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_7a06 {
    margin: 2rem 0;
}

.secondary_wide_469b {
    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 */
.search_full_c200 {
    padding: var(--section-padding);
}

.white-a7c4 {
    margin-top: 1rem;
}

.upper_5f75 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.upper_5f75 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.upper_5f75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.texture-fast-b8ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-c5db {
    margin: 2rem 0;
}

.summary_25ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.stone_1afe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.texture-first-5020 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tag_bf5d {
    margin: 2rem 0;
}

.short_fde4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.short_fde4 .narrow-9332 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-old-01c5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input-old-01c5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph-prev-4ca0 {
    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);
}

.border-complex-ea59 {
    color: var(--text-white);
    font-weight: 600;
}

.border-22d6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.shade-old-6fc0 {
    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);
}

.shade-old-6fc0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.caption_pro_b8b6 {
    padding: var(--section-padding);
}

.under_4f5e {
    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;
}

.under_4f5e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.grid_df46 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid_df46 .title_f384 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_df46 .hero_e15d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.layout-14ac {
    flex: 1;
}

.short-cec1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary-inner-4f4e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-inner-4f4e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.primary-inner-4f4e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.detail-b4e6 {
    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);
}

.detail-b4e6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-b4e6 strong {
    color: var(--warning-color);
}

/* Slots Section */
.disabled-selected-6f49 {
    padding: var(--section-padding);
}

.disabled_iron_b95c {
    margin: 2rem 0;
}

/* Table Games Section */
.wrapper-18f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-9eb3 {
    margin: 2rem 0;
}

.border-f54c {
    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);
}

.border-f54c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.border-f54c .menu_medium_2f6e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-f54c .frame_29d4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.feature-gold-8848 {
    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);
}

.feature-gold-8848 .label-soft-421e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.narrow-80b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_aa34 {
    margin: 2rem 0;
}

.pro-1e98 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-8c7c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-987a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.advanced-ee3a {
    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);
}

.advanced-ee3a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.advanced-ee3a.fn-active-feb6 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_1ea8 {
    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);
}

.over_3527 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.over_3527 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hot-dafc {
    padding: var(--section-padding);
}

.module_44b4 {
    margin: 2rem 0;
}

.texture_new_06be {
    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);
}

.texture_new_06be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .texture_new_06be {
        flex-direction: column;
        align-items: flex-start;
    }
}

.article_fluid_92db {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.pattern_239c {
    flex: 1;
}

.inner-1c85 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.under-b2b4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-lite-da0a {
    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;
}

.title_c828 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info_0c45 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lower-5582 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container_outer_11c2 {
    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;
}

.container_outer_11c2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search-867f {
    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);
}

.last_fde5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last_fde5 strong {
    color: var(--accent-color);
}

/* New Games Section */
.tag_white_ed46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_first_5f09 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail_first_5f09 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_first_5f09 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_focused_2e60 {
    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;
}

.pagination_focused_2e60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.small_4f77 {
    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;
}

.video_pressed_a5c0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pagination_af0e {
    font-size: 2rem;
}

.media-silver-a13a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.wrapper-8013 {
    flex: 1;
}

.shadow-warm-8459 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.simple-5fa3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.column_basic_f45a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bottom-6130 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.small_71d3 {
    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;
}

.notification-3129 {
    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;
}

.notification-3129:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.table_right_87ee {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_a966 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-yellow-49fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .filter-yellow-49fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_2292 {
    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);
}

.badge-e092 {
    color: var(--text-white);
    font-weight: 600;
}

.overlay_focused_05aa {
    color: var(--accent-color);
    font-weight: 600;
}

.dirty-858a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.dirty-858a strong {
    color: var(--accent-color);
}

/* Security Section */
.caption_gold_9ced {
    padding: var(--section-padding);
}

/* Benefits Section */
.dynamic_4c5a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.sidebar-8f15 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.article_cc3b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-a31f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.main-over-d12b {
    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) {
    .main-over-d12b {
        flex-direction: column;
        gap: 1rem;
    }
}

.main-over-d12b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.main-over-d12b .media-6dae {
    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;
}

.main-over-d12b .progress_red_808c {
    flex: 1;
}

.main-over-d12b .main_light_1fe2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.main-over-d12b .pagination-hovered-4822 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.mask-dynamic-431f {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-dynamic-431f .prev-224b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask-dynamic-431f .column-8ba2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-dynamic-431f .column-8ba2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mask-dynamic-431f .column-8ba2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.mask_selected_51dc {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.avatar_3a32 {
    padding: var(--section-padding);
}

.backdrop_16a8 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .backdrop_16a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_0105 {
    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);
}

.outline_0105:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.outline_0105 .input-c0e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_0105 .text_narrow_051d {
    flex: 1;
}

.outline_0105 .header-complex-0ac2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_0105 .panel-01e3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.block-blue-15ae {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-blue-15ae .hero-large-87b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-blue-15ae .backdrop-c0b2 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.block-blue-15ae .backdrop-c0b2 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);
}

.block-blue-15ae .backdrop-c0b2 li:last-child {
    border-bottom: none;
}

.block-blue-15ae .backdrop-c0b2 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;
}

.block-blue-15ae .backdrop-c0b2 li strong {
    color: var(--text-white);
}

.main_current_6a1e {
    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);
}

.main_current_6a1e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main_current_6a1e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.purple_8d17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-bottom-f8ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .status-bottom-f8ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

.progress-advanced-44c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress-advanced-44c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail_73b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-north-db92 {
    font-size: 2rem;
}

.banner-selected-be8c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_4016 {
    flex: 1;
}

.main-9fb4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-9fb4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.main-9fb4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.message_lower_023e {
    margin-top: 3rem;
}

.last-f93c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.heading_51a1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.soft_871e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soft_871e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.soft_871e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.soft_871e li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.orange-0bce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-black-4328 {
    margin: 2rem 0;
}

.footer-b9f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.footer-b9f9 .narrow-9332 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_b33f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .warm_b33f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_narrow_c21a {
    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);
}

.hidden_narrow_c21a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.brown-c83e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.title_6254 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pattern-a197 {
    padding: var(--section-padding);
}

.shadow-hard-fab6 {
    margin: 2rem 0;
}

.filter-a709 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .filter-a709 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-a709 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_5d9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze_5d9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tabs_motion_3618 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.heading_short_7ee2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.notice-south-98b4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-south-98b4.hot-4808 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.prev_938b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.caption-short-f264 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.upper_a956 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail_first_e2ff {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.large-6fbc {
    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);
}

.large-6fbc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.large-6fbc strong {
    color: var(--accent-color);
}

/* Update Log Section */
.carousel-3bc0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-cdb3 {
    margin: 2rem 0;
}

.tertiary-hard-1a58 {
    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) {
    .tertiary-hard-1a58 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tertiary-hard-1a58:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tertiary-hard-1a58::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);
}

.search-easy-9e3d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.gas_a085 {
    flex: 1;
}

.black-e040 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.prev_b8db {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prev_b8db li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_2c52 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-complex-f4fb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center_fb95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .center_fb95 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_e454 {
    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);
}

.video-c088 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.basic-4e2c {
    flex: 1;
}

.tooltip-e293 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.fast_748f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_df74 {
    margin-top: 2rem;
    text-align: center;
}

.table_8015 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.table_8015 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.component_fluid_6f8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_fluid_6f8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-e124 {
    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);
}

.advanced-e124:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced-e124 .paragraph-f5a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-e124 .list-4055 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.advanced-e124 .popup-2a28 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.advanced-e124 .table_copper_c5b1 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slow_c8fa {
    padding: var(--section-padding);
}

.dark-b92a .input_bottom_d2bc {
    flex: 1;
}

/* Promo Calendar Section */
.active-hot-cc6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-0505 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-0505 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_e881 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-slow-e730 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.badge-dark-5a83 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-current-04b3 {
    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);
}

.photo_2470 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column_hard_5083 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.row-1ae2 {
    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);
}

.row-1ae2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row-1ae2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hover_simple_682b {
    padding: var(--section-padding);
}

.accent-stale-71fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accent-stale-71fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.full-7c45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_9c81 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_dba3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb_dba3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_advanced_d921 {
    margin-top: 3rem;
}

.sidebar_advanced_d921 .last-f93c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar_advanced_d921 .heading_51a1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_advanced_d921 .soft_871e {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sidebar_advanced_d921 .soft_871e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sidebar_advanced_d921 .soft_871e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sidebar_advanced_d921 .soft_871e li strong {
    color: var(--warning-color);
}

.highlight-d426 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight-d426 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.hovered-96c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-59d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-59d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_7459 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_7459 .narrow-9332 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.preview_7520 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider_simple_5c18 {
    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);
}

.slider_simple_5c18:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-hot-0860 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-3fb7 {
    flex: 1;
}

.avatar_978d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.preview-current-dd06 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.focus-a745 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.frame_yellow_022c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tiny_7498 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .tiny_7498 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_over_dabb {
    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);
}

.summary_over_dabb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.stone_2e35 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-b80c {
    color: var(--text-gray);
    font-size: 1rem;
}

.silver_a94a {
    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);
}

.outline_fa01 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.outline_fa01 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.shadow_motion_53c8 { 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; }
.mini_2ab0, .hard-ec5f { max-width:100%; height:auto; }

.iron_409b, .gradient_9f98, .motion-5325 { white-space:normal; }

.grid-liquid-5bce,
.table_dim_5522,
.next_05d8,
.component_fluid_6f8e,
.frame_slow_1b7c,
.black_acb2 {
  flex-wrap:wrap;
}

[class*="grid"],
.tiny_7498,
.filter-a709,
.header-064d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hidden_10ba img,
.table_dim_5522 img,
.alert-right-1d9d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.tooltip-wide-189c, .focus-hot-b3af,
.tertiary-top-c87c, .sidebar-simple-0616 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.huge_aa9a { width:100%; overflow-x:auto; }
.huge_aa9a table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.component-a19f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .component-a19f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.notification-8c6c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.slider-under-5cd9,
.frame_simple_1891,
.footer-6614,
.purple_cb40,
.active_fa94,
.tiny_7498,
.filter-a709,
.header-064d,
.preview-white-6f4e,
.module_44b4,
.component-a19f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .slider-under-5cd9,
  .frame_simple_1891,
  .footer-6614,
  .purple_cb40,
  .active_fa94,
  .tiny_7498,
  .filter-a709,
  .header-064d,
  .preview-white-6f4e,
  .module_44b4,
  .component-a19f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.article_fd42,
.in_2f20,
.summary_over_dabb,
.chip-fixed-66dd,
.bronze_5d9c,
.outline-fresh-1d7f,
.texture_new_06be,
.notification-8c6c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.fluid-bfda,
.advanced_85ff,
.main_active_cc40 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fluid-bfda > *,
.advanced_85ff > *,
.main_active_cc40 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4706 */
.shadow-element-o6 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
