/* {$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;
}

.white-d7af {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.glass-b7fb {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .glass-b7fb {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .glass-b7fb {
        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 */
.shadow_f924 {
    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);
}

.active_6ac2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .active_6ac2 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .article_f5b5 {
        grid-column: 1;
    }
    
    .pink-2ed2 {
        grid-column: 2;
    }
    
    .active_5e28 {
        grid-column: 3;
    }
}

.article_f5b5 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.article_f5b5:hover img {
    transform: scale(1.05);
}

/* Navigation */
.panel_dc71 {
    display: none;
}

@media (min-width: 1024px) {
    .panel_dc71 {
        display: block;
    }
}

/* Grouped Navigation */
.highlight-8cd0 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo-7e52 {
    position: relative;
}

.menu-silver-63d2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.logo-7e52 .label_ada3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.label_ada3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.item-6ef6 {
    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;
}

.item-6ef6:hover,
.item-6ef6.fn-active-1287 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.border-c2e1 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .border-c2e1 {
        display: flex;
    }
}

/* Mobile Register Button */
.pink-2ed2 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .pink-2ed2 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.wide_c4e8 {
    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;
}

.wide_c4e8::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 */
.active_5e28 {
    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) {
    .active_5e28 {
        display: none;
    }
}

.active_5e28 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.active_5e28.fn-active-1287 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.active_5e28.fn-active-1287 span:nth-child(2) {
    opacity: 0;
}

.active_5e28.fn-active-1287 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.complex_5d19 {
    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;
}

.complex_5d19.fn-active-1287 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.text_36b3 {
    overflow: hidden;
}

.article_caf2 {
    list-style: none;
    padding: 0.75rem 0;
}

.blue_7126 {
    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;
}

.blue_7126:hover,
.blue_7126.fn-active-1287 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.blue_7126.east-2dac {
    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;
}

.blue_7126.east-2dac::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 */
.plasma-1dc5 {
    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;
}

.article-78d8 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.article-78d8:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.tag-ceac {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tag-ceac:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.carousel_b16b {
    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;
}

.carousel_b16b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.center-e0c8 {
    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;
}

.title-stone-7476 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.title-stone-7476:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.short-83b6 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.short-83b6:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.chip_dc1b {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.chip_dc1b: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);
}

.bottom-50f7 {
    font-size: 1em;
    font-weight: 700;
}

.box-8569 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.notification-rough-0207 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.notification-rough-0207::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;
}

.content_70b7 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .content_70b7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.up_f02a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.bronze-aa97 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.sort-8897 {
    margin-bottom: 2rem;
}

.disabled_cold_10fd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .disabled_cold_10fd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-4c8a {
    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);
}

.sidebar_07ac {
    font-size: 1.5rem;
}

.panel_45b3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tabs_south_2634 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_003d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.box_003d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.primary-66b5 {
    text-align: center;
    margin-bottom: 3rem;
}

.info-copper-351c {
    margin-bottom: 1rem;
}

.hovered_88eb {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.notification-fe11 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .notification-fe11 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .notification-fe11.button_wide_f906 {
        direction: rtl;
    }
    
    .notification-fe11.button_wide_f906 > * {
        direction: ltr;
    }
}

.gas_e508 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.gas_e508:first-child {
    margin-top: 0;
}

.footer_complex_2682 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slider-dirty-9c7f {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider-dirty-9c7f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.upper_3162 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_3162 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-b95a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.large-6af8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.text-72ee {
    list-style: none;
}

.text-72ee li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-72ee li:last-child {
    border-bottom: none;
}

/* Games Features */
.large_1a5a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.heading_fc0f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.summary_complex_24d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.heading-e12c {
    margin: 2rem 0;
}

.plasma_e25c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.texture-d74e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.last-97a2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.border_8f13 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.video-f6a1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-f6a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_bfb0 {
    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);
}

.small_bfb0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_9fc6 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.thick_4d6d {
    font-size: 1.5rem;
}

.status-9ce6 {
    color: var(--accent-color);
    margin: 0;
}

.liquid_878e {
    list-style: none;
}

.liquid_878e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.liquid_878e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.filter_rough_53c3 {
    margin: 2rem 0;
}

.tertiary_e554 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tag-91b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tag-91b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_ea33 {
    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);
}

.notification-af2d {
    font-size: 1.25rem;
}

.popup-6412 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.tooltip_7921,
.gallery_solid_c3c6 {
    text-align: center;
    margin: 2rem 0;
}

.search-9004,
.highlight_outer_1d52 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.summary_6fcf {
    margin: 2rem 0;
    text-align: center;
}

.text-8035 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.text-8035::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;
}

.last-6dfe {
    position: relative;
    z-index: 1;
}

.header_61ad {
    margin-bottom: 1rem;
}

.modal-paper-410c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title_879e {
    margin-bottom: 3rem;
}

.tertiary_536c {
    margin-top: 3rem;
}

.active_2cd8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .active_2cd8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_2cd8 .preview-4c8a {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_gold_4913 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask-f5a8 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.media_8439 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.avatar_light_abba {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .avatar_light_abba {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar_light_abba {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.wrapper-f525 {
    margin-bottom: 1rem;
}

.accent_hot_7c46 img {
    margin-bottom: 1rem;
}

.fast_f9b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-1fea {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.nav_yellow_b594 {
    list-style: none;
}

.nav_yellow_b594 li {
    margin-bottom: 0.5rem;
}

.nav_yellow_b594 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav_yellow_b594 a:hover {
    color: var(--accent-color);
}

.orange-721b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blue_ba73 {
    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);
}

.blue_ba73:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.north-b57e {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.north-b57e p {
    margin-bottom: 0.25rem;
}

.info_9523 {
    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) {
    .info_9523 {
        flex-direction: row;
    }
}

.card_bright_cd3d {
    text-align: center;
}

@media (min-width: 768px) {
    .card_bright_cd3d {
        text-align: left;
    }
}

.card_bright_cd3d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice-lower-1b63 {
    font-size: 0.75rem !important;
}

.notification_top_d559 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination_e446 {
    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);
    }
}

.dropdown-thick-8990 {
    animation: fadeInUp 0.6s ease-out;
}

.soft_b09e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.focus-855a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-855a {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hot-6c78 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot-6c78 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_8147 {
    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);
}

.thick_8147 .summary_complex_24d0 {
    font-size: 1.25rem;
}

.thick_8147 .badge-a34f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.video_fc67 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_fc67 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-5aa4 {
    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);
}

.photo-5aa4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-over-b792 {
    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);
}

.highlight-slow-0c6d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.row-f2b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-cold-ad59 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_0e38 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_0e38 .soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow_0e38 .stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-focused-243a {
    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);
}

.footer-9c29 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.footer-9c29 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.footer-9c29 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.caption-5642 {
    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-pink-be36 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text_fast_54a9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text_fast_54a9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text_fast_54a9 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);
}

.text_fast_54a9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.text_fast_54a9 input::placeholder {
    color: var(--text-muted);
}

.frame-clean-dd36 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.center_eb04 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.center_eb04 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.first-b0bb {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.first-b0bb:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tag-91b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-91b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_ea33 {
    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);
}

.overlay_ea33 .notification-af2d {
    font-size: 1.25rem;
}

.overlay_ea33 .popup-6412 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.backdrop_liquid_d8eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-1980 {
    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);
}

.card-1980 .summary_complex_24d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-1980 .soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-1980 .stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-lite-24f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-bright-9871 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.background-bright-9871 .gradient-hot-e844 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background-bright-9871 .down_2531 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-a817 {
    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);
}

.sort_75fd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_75fd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-3270 {
    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);
}

.content-3270:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-liquid-1060 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.message_advanced_a5df {
    flex: 1;
}

.header_af58 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form_ebba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden_red_24a4 {
    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);
}

.hidden_red_24a4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.tiny_c8a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny_c8a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_aa4d {
    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);
}

.thick_aa4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-medium-37a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-solid-5b5c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sort-fluid-5089 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tooltip-6803 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main_cool_b124 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_76b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-cold-892d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-cold-892d .pattern-dirty-5502 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-cold-892d .south_0d3c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-aed6 {
    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);
}

.bright_00a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_orange_49f3 {
    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);
}

.sidebar_orange_49f3 .summary_complex_24d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_orange_49f3 .soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar_orange_49f3 .stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_basic_69c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_basic_69c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-bright-ba5d {
    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);
}

.icon-bright-ba5d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.image_middle_ff2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_middle_ff2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-c8dd {
    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);
}

.texture-c8dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard-a706 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-fixed-b16d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture-d74e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.active_right_c251 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.widget_5b06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast-bdde {
    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);
}

.fast-bdde:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-92c4 {
    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);
}

.highlight-9f23 {
    flex: 1;
}

.sidebar_tall_40af {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.accent_new_23e2 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-c42c {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-tiny-a15f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_83a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small_83a5 .gradient-hot-e844 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small_83a5 .down_2531 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_solid_c3c6 {
    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);
}

.narrow-88a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-88a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.notification-dim-90ba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-dim-90ba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim_dc71 {
    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);
}

.dim_dc71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-da7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-bright-4e1f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero_b268 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.modal-focused-1e73 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.panel_1d19 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_iron_30bb {
    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);
}

.mini-f21a {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_9cc5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite-5edd {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright_00a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_orange_49f3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sidebar_orange_49f3 .soft-fa41 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar_orange_49f3 .stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_6aac {
    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);
}

.disabled_left_cdae {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_left_cdae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_left_cdae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite_c8f2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite_c8f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim_b845 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.cool-f2b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.left_3989 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.highlight_79c1 {
    padding: 1.5rem;
}

.notification-pressed-4745 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption-52bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-52bf 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;
}

.caption-52bf li:last-child {
    border-bottom: none;
}

.caption-52bf li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.summary-1eb4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-1eb4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_medium_9c0f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_medium_9c0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_pink_e5ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-ed85 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element_gold_b213 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.steel_d152 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pagination-548a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress_0be4 {
    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);
}

.background_gold_01f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_bf6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-rough-60e4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_liquid_54b8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.description_basic_f3d6 {
    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);
}

.clean_c48c {
    text-align: center;
}

.steel-759c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-out-3c50 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask-8605 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-7aff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lite-7aff .soft-fa41 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lite-7aff .stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-1493 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right-1493 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right-1493 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-7049 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.liquid-7049:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_c03d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.button-ee56 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.soft-fa41 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gallery_c122 {
    padding: 1.5rem;
}

.stone_39f0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal_orange_8229 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal_orange_8229 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;
}

.modal_orange_8229 li:last-child {
    border-bottom: none;
}

.modal_orange_8229 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.purple_5718 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.footer_a5b1 {
    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);
}

.footer_a5b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_e08d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-8e78 {
    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);
}

.hover-over-b792 {
    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;
}

.highlight-slow-0c6d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row-f2b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-ad52 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_down_1bfb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.container-cool-3288 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern-warm-d2ff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-bbfa {
    display: flex;
    gap: 1rem;
}

.accordion-bbfa .soft_7fa0 {
    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;
}

.narrow_a5f3 {
    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);
}

.cold_03a0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb_prev_8826 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb_prev_8826 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.breadcrumb_prev_8826 li:last-child {
    border-bottom: none;
}

.breadcrumb_prev_8826 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.image_fast_7aaf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image_fast_7aaf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_fast_7aaf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_9139 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.upper_9139:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-e919 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.paper-3cd2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern-dirty-5502 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption_bbb6 {
    font-size: 1rem;
}

.texture_center_9442 {
    padding: 1.5rem;
}

.south_0d3c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hidden-b49a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hidden-b49a .clean_c48c {
    text-align: center;
}

.hidden-b49a .aside-out-3c50 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hidden-b49a .thumbnail_east_acb5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fast_9790 {
    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);
}

.fast_9790:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.thumbnail-right-b406 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-right-b406 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_663c {
    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);
}

.picture_663c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-bottom-bb72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-bc5f {
    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);
}

.light-7eb3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-7bdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.white_5454 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-8b28 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.advanced-9c42 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_3976 {
    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);
}

.liquid_8c4f {
    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;
}

.liquid_8c4f.nav_next_fa9a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.liquid_8c4f.static-a69f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.liquid_8c4f.paragraph_da97 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.liquid_8c4f.item-8f0c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.liquid_8c4f.block_soft_bfc8 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.popup-dim-4b0e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide-56d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_2983 {
    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);
}

.hidden-huge-88aa {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-lite-24f6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-lite-24f6 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;
}

.accent-lite-24f6 li:last-child {
    border-bottom: none;
}

.accent-lite-24f6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.pattern_plasma_609f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_plasma_609f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_plasma_609f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast_dbfa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fast_dbfa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast_dbfa.footer_warm_8a0c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .fast_dbfa.footer_warm_8a0c {
        grid-column: span 3;
    }
}

.section-prev-8f87 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.fast_dbfa.footer_warm_8a0c .section-prev-8f87 {
    background: rgba(6, 182, 212, 0.1);
}

.caption-large-2037 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.basic-f6a0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.fast_dbfa.footer_warm_8a0c .basic-f6a0 {
    color: var(--info-color);
}

.photo-5b47 {
    padding: 1.5rem;
    text-align: center;
}

.slider-98dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.fast_dbfa.footer_warm_8a0c .slider-98dd {
    color: var(--info-color);
}

.outline_mini_18cf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.media_eaa6 {
    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 */
.silver_c338 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver_c338 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_middle_f658 {
    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);
}

.description_middle_f658:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-655a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-1980 {
    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);
}

.notification-af2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-easy-ebb8 {
    flex: 1;
}

.tertiary_e554 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar-0832 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow_e203 {
    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);
}

.narrow_5bbe {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.huge_0340 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pagination_e446 {
    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);
}

.logo_618d {
  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);
}

.logo_618d .clean_c48c {
    text-align: center;
}

.logo_618d .steel-759c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.logo_618d .aside-out-3c50 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.avatar_88f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper-254e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left_99c3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center_f0e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_blue_3ef4 {
    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);
}

.notification-huge-60de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb-3456 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-tiny-96a7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter-tiny-96a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-tiny-96a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast_3145 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fast_3145:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-f3a4 {
    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);
}

.current_cce8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card_1051 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.short_65f2 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.short_65f2.pattern_6488 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.short_65f2.last_8225 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.short_65f2.current-4c2c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.last-e93e {
    padding: 1.5rem;
    text-align: center;
}

.solid_3916 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.backdrop_hovered_d9d4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.backdrop_hovered_d9d4 .footer-large-d146 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.section_1499 {
    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);
}

.section_1499:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.thumbnail-pro-dde7 {
  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);
}

.accent_eecf {
    text-align: center;
}

.accent_eecf .steel-759c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.accent_eecf .aside-out-3c50 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.aside-bef6 { text-align: center; }
.modal_glass_d434 { text-align: left; }
.hard-af9c { text-align: right; }

.surface-956b { margin-bottom: 0; }
.video_full_bf88 { margin-bottom: 0.5rem; }
.icon-static-ea5f { margin-bottom: 1rem; }
.badge-rough-3479 { margin-bottom: 1.5rem; }
.cold-df90 { margin-bottom: 2rem; }

.pink-f0bf { margin-top: 0; }
.title_3065 { margin-top: 0.5rem; }
.focus_old_b95f { margin-top: 1rem; }
.frame-28cb { margin-top: 1.5rem; }
.highlight_black_9dea { margin-top: 2rem; }

.fn-hidden-1287 { display: none; }
.fn-visible-1287 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .notification-rough-0207 {
        padding: 6rem 0 3rem;
    }
    
    .content_70b7 {
        text-align: center;
    }
    
    .notification-fe11 {
        text-align: center;
    }
    
    .disabled_cold_10fd {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .shadow_f924,
    .complex_5d19,
    .text-8035,
    .media_8439 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .notification-rough-0207 {
        background: none;
    }
}

/* Providers Section */
.badge-5970 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_5aba {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out_5aba {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_5aba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-3a9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-3a9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold-45f4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content_ffcc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.secondary_77e4 {
    list-style: none;
    padding: 0;
}

.secondary_77e4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.secondary_77e4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pattern_red_baf4 {
    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);
}

.pattern_red_baf4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hero_narrow_563f {
    padding: var(--section-padding);
}

.wrapper_5cb5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_5cb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-cold-8160 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-cold-8160:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.focused-7a6d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.module_fb21 {
    display: flex;
    flex-direction: column;
}

.upper-a644 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hot-1d84 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.old_7bf2 {
    color: var(--accent-color);
}

.texture-2149 {
    font-size: 1.25rem;
}

.detail_68bb {
    margin-bottom: 1rem;
}

.detail_68bb p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.advanced-a3f1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.panel_stale_6326 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.clean_c48c {
    text-align: center;
}

.steel-759c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-out-3c50 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.feature_liquid_174e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_5ac8 {
    margin: 2rem 0;
}

.center_c741 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.center_c741 .summary_complex_24d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_6d63 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.static_051d {
    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;
}

.static_051d:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_paper_2fa4 {
    font-size: 2rem;
}

.text_clean_e190 {
    display: flex;
    flex-direction: column;
}

.card_a469 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.widget_cd36 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.focus_e466 {
    padding: var(--section-padding);
}

.button_basic_69a8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button_basic_69a8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_basic_69a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_093d {
    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);
}

.small_093d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.small_093d .steel-759c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.small_093d .aside-out-3c50 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.small_093d .steel-cd9e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.up_b7b1 {
    margin-top: 4rem;
}

.carousel_484e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.caption-advanced-485f {
    overflow-x: auto;
}

.photo_a12c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.photo_a12c thead {
    background: var(--accent-color);
}

.photo_a12c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.photo_a12c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_a12c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.photo_a12c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.pro_dec3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-gas-6cd3 {
    max-width: 900px;
    margin: 0 auto;
}

.short-8b70 {
    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);
}

.short-8b70:hover {
    border-color: var(--accent-color);
}

.in-ffec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.in-ffec h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.surface_static_98b7 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.short-8b70.fn-active-1287 .surface_static_98b7 {
    transform: rotate(45deg);
}

.main-5fd5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.short-8b70.fn-active-1287 .main-5fd5 {
    max-height: 1000px;
}

.main-5fd5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.secondary_e08d {
    padding: var(--section-padding);
}

.footer-9c29 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.list-steel-9a89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-0283 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-0283 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hover-a91c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_yellow_2df2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.banner_up_c61c {
    font-size: 2rem;
}

.backdrop_2d69 {
    color: var(--text-white);
    margin: 0;
}

.link_3ed2 {
    list-style: none;
    padding: 0;
}

.link_3ed2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link_3ed2 li:last-child {
    border-bottom: none;
}

.south_1e62 {
    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);
}

.south_1e62 p {
    color: var(--success-color);
    margin: 0;
}

.frame-brown-c1e7 {
    margin-top: 3rem;
}

.cold_03a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.huge_493a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .huge_493a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-9ceb {
    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);
}

.wrapper-lower-ef9b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.element-9ceb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.bright_d87a {
    padding: var(--section-padding);
}

.up-0845 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up-0845 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-purple-16ef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description-purple-16ef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info_stale_3890 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark_341c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.item_simple_0ae3 {
    flex: 1;
}

.accordion-0fe2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outer_89aa {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.backdrop_ccc6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange_244a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.orange_244a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.accordion_solid_07c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.up_21f1 {
    padding: var(--section-padding);
}

.shade-liquid-3354 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.red_34e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_34e9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-iron-ea72 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-copper-2c96, .chip-f290, .frame_b9b0 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.frame_b9b0 {
    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 */
.full_f039 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_outer_d3f8 {
    margin: 2rem 0;
}

.slider-fd5d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-fluid-26d9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.preview-white-398e {
    list-style: none;
    padding: 0;
}

.preview-white-398e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.preview-white-398e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.preview-white-398e li:last-child {
    border-bottom: none;
}

.nav-388e {
    text-align: center;
    margin-top: 2rem;
}

.preview_2efb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.dropdown-narrow-5980 {
    padding: var(--section-padding);
}

.pagination_prev_ac35 {
    margin: 2rem 0;
}

.hidden-fast-75f6 {
    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) {
    .hidden-fast-75f6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hidden-fast-75f6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow-dirty-eaf8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.blue_97a9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.hot_954c {
    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;
}

.full_e7f7 {
    flex: 1;
}

.summary-a485 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.basic-7066 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel_840c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.easy-4bd5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .easy-4bd5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.item-cb2e {
    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);
}

.item-cb2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-cb2e .steel-759c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item-cb2e .aside-out-3c50 {
    color: var(--text-gray);
    font-size: 1rem;
}

.filter_fresh_f6d4 {
    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);
}

.north_2e87 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.north_2e87 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.link-bf0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .link-bf0d {
        grid-template-columns: 1fr 1fr;
    }
}

.outline_pressed_543a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_c84c {
    margin-bottom: 1.5rem;
}

.soft_c84c label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.soft_c84c input,
.soft_c84c 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;
}

.soft_c84c input:focus,
.soft_c84c select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.background_paper_fca8 {
    width: 100%;
    margin-top: 1rem;
}

.tooltip-liquid-5f23 {
    display: flex;
    align-items: center;
}

.accent_fluid_c2b8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.first_1d7c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.search_f50d {
    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;
}

.fresh-b620 {
    color: var(--text-gray);
}

.backdrop-b7a6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.message-8aaa {
    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);
}

.message-8aaa p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.complex_4b15 {
    margin-top: 3rem;
}

.image_soft_26d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.active_d430 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_outer_99c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.inner-c163 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-c163:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.label_selected_b715 {
    padding: var(--section-padding);
}

.menu_glass_68d3 {
    margin: 2rem 0;
}

.content-in-1528 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.clean-b9b0 {
    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;
}

.clean-b9b0:hover, .clean-b9b0.fn-active-1287 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.overlay_tall_fb9d {
    display: none;
}

.overlay_tall_fb9d.fn-active-1287 {
    display: block;
}

.detail_inner_e831 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-last-8270 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph_859d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.paragraph_859d ul {
    list-style: none;
    padding: 0;
}

.paragraph_859d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.paragraph_859d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.plasma_7557 {
    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 */
.logo-6918 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-bronze-da1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_green_cf8c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail_7b2b {
    color: var(--accent-color);
    margin: 0;
}

.footer-7077 {
    display: flex;
    gap: 1.5rem;
}

.card_green_12a3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tiny_0c3e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.preview_light_746c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview_light_746c.prev_8cd2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.preview_light_746c.basic_052e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.preview_light_746c.status-lower-03dd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form_7fa8 {
    margin-top: 2rem;
}

.photo-933c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph-1c60 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .paragraph-1c60 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old-75b4 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.detail_1b2e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.south_1881 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.slider-bd91 {
    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 */
.progress-complex-7884 {
    padding: var(--section-padding);
}

.small_b91a {
    margin: 2rem 0;
}

.notice_dark_726c {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.input_95bd {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.fluid_8476 {
    list-style: none;
    padding: 0;
}

.fluid_8476 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;
}

.fluid_8476 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.fluid_8476 li:last-child {
    border-bottom: none;
}

.banner-prev-bf7e {
    margin: 2rem 0;
}

.panel_618e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu_0ea5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .menu_0ea5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside-medium-d383 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_238b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-de61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stale_fe73 {
    margin-top: 2rem;
}

.header_af58 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.border-wood-d464 {
    list-style: none;
    padding: 0;
}

.sidebar-2fb8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.sidebar-2fb8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.sidebar-2fb8 a:hover {
    text-decoration: underline;
}

.pattern-fixed-7549 {
    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 */
.orange-2c26 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-229f {
    margin: 2rem 0;
}

.secondary_fresh_9276 {
    margin-bottom: 3rem;
}

.secondary_fresh_9276 .summary-fluid-26d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.soft-b22d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.info-ba33 {
    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);
}

.info-ba33:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.pattern-0c22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pattern-0c22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_dim_077b {
    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 */
.container-warm-2f8c {
    padding: var(--section-padding);
}

.text-6781 {
    margin: 2rem 0;
}

.slider-ee12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.block_8bc8 {
    overflow-x: auto;
    margin: 2rem 0;
}

.heading_437f {
    background: rgba(6, 182, 212, 0.1) !important;
}

.red_cd0a {
    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;
}

.cool_6b55 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.medium_4ecf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .medium_4ecf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_gold_97df {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_gold_97df .summary_complex_24d0 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.footer_gold_97df .soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_832b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.accent_dynamic_3f78 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_0bb3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_0bb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_89cc {
    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;
}

.easy_89cc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.glass-0aeb {
    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);
}

.row-bronze-35e4 {
    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;
}

.element_simple_7750 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message-in-8e1b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.up_f0c1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.carousel-middle-94ab {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_outer_06c0 {
    color: var(--text-white);
    font-weight: 600;
}

.breadcrumb_9be2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask-76c4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mask-76c4 .soft_7fa0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.banner_4b0f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_4b0f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_0593 {
    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);
}

.aside_0593:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_0593 .steel-759c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_0593 .aside-out-3c50 {
    color: var(--text-gray);
    font-size: 1rem;
}

.fast-d554 {
    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);
}

.summary_small_2fba {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.summary_small_2fba strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.panel_1d19 {
    margin: 2rem 0;
}

.filter_iron_30bb {
    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);
}

.filter_iron_30bb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.mini-f21a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.border-complex-be00 {
    flex: 1;
}

.dropdown_9cc5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite-5edd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.bright_00a0 {
    margin: 2rem 0;
}

.sidebar_orange_49f3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_orange_49f3 .soft-fa41 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sidebar_orange_49f3 .stone_39f0 {
    color: var(--text-gray);
    margin: 0;
}

.caption_6aac {
    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);
}

.caption_6aac .search-9004 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tooltip_832b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.pagination-92c4 {
    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;
}

.highlight-9f23 {
    flex: 1;
}

.accent_new_23e2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.article-c42c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hover-over-b792 {
    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;
}

.secondary-b72c {
    flex: 1;
}

.highlight-slow-0c6d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.row-f2b1 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.container-cool-3288 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pattern-warm-d2ff {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.accordion-bbfa {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.accordion-bbfa .soft_7fa0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.narrow_a5f3 {
    margin-top: 2rem;
}

.narrow_a5f3 .cold_03a0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.primary-bronze-07b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_basic_f3d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .description_basic_f3d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_basic_f3d6 .clean_c48c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-8605 {
    margin: 2rem 0;
}

.lite-7aff {
    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 */
.widget-5a3a {
    padding: var(--section-padding);
}

.gallery_c122 {
    margin-top: 1rem;
}

.modal_orange_8229 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.modal_orange_8229 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.modal_orange_8229 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.tooltip_static_09c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_7764 {
    margin: 2rem 0;
}

.left_520c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.button_526d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.primary-action-2085 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.complex-e1e8 {
    margin: 2rem 0;
}

.frame_wide_3b81 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.frame_wide_3b81 .summary-fluid-26d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advanced_585c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .advanced_585c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column_518b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-8d75 {
    color: var(--text-white);
    font-weight: 600;
}

.gallery-action-beee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.in-7afa {
    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);
}

.in-7afa p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.dropdown-0d8e {
    padding: var(--section-padding);
}

.footer_wide_48de {
    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;
}

.footer_wide_48de:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.info_hovered_46b3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_hovered_46b3 .wrapper-lower-ef9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.info_hovered_46b3 .slider_large_24ed {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.article-light-3dcd {
    flex: 1;
}

.center-78d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.short-9f4e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short-9f4e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.short-9f4e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.main-64ad {
    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);
}

.main-64ad p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-64ad strong {
    color: var(--warning-color);
}

/* Slots Section */
.paper-a7ee {
    padding: var(--section-padding);
}

.main_cool_b124 {
    margin: 2rem 0;
}

/* Table Games Section */
.notification_97f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_76b9 {
    margin: 2rem 0;
}

.secondary-cold-892d {
    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);
}

.secondary-cold-892d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary-cold-892d .pattern-dirty-5502 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-cold-892d .south_0d3c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hover-aed6 {
    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);
}

.hover-aed6 .search-9004 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.row-iron-c169 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_brown_e837 {
    margin: 2rem 0;
}

.shadow-full-3c32 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_a8a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-a767 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-4ba1 {
    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);
}

.slider-4ba1:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.slider-4ba1.fn-active-1287 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_77e1 {
    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);
}

.icon_bright_b11f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon_bright_b11f strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.row_81af {
    padding: var(--section-padding);
}

.paragraph-solid-f11e {
    margin: 2rem 0;
}

.tooltip_lite_0892 {
    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);
}

.tooltip_lite_0892:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tooltip_lite_0892 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.thick_6ab1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.photo_555a {
    flex: 1;
}

.caption-clean-9267 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-west-a628 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-a1ad {
    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;
}

.left-64ea {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background_advanced_87d7 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lite-48d1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_selected_2744 {
    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;
}

.picture_selected_2744:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accent-top-6df6 {
    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);
}

.grid-out-2fd1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid-out-2fd1 strong {
    color: var(--accent-color);
}

/* New Games Section */
.fluid_5983 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_narrow_2717 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail_narrow_2717 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail_narrow_2717 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_0691 {
    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;
}

.yellow_0691:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background-last-838e {
    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;
}

.image-e424 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.outer-37ff {
    font-size: 2rem;
}

.video_9cd3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.banner_e833 {
    flex: 1;
}

.dark-4787 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.content-hard-beda {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.slider_north_c5cb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown_7c83 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.row_4658 {
    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;
}

.column-b8d7 {
    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;
}

.column-b8d7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tertiary_d164 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-in-e7fb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-inner-2d41 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .sidebar-inner-2d41 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_0d51 {
    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);
}

.sort_blue_7ac3 {
    color: var(--text-white);
    font-weight: 600;
}

.overlay_top_f037 {
    color: var(--accent-color);
    font-weight: 600;
}

.overlay_e92e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.overlay_e92e strong {
    color: var(--accent-color);
}

/* Security Section */
.out-55ea {
    padding: var(--section-padding);
}

/* Benefits Section */
.pagination_815e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.main-5354 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.sort-aaa4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic-86bc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.hidden-in-30ac {
    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) {
    .hidden-in-30ac {
        flex-direction: column;
        gap: 1rem;
    }
}

.hidden-in-30ac:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hidden-in-30ac .hover-over-b792 {
    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;
}

.hidden-in-30ac .secondary-b72c {
    flex: 1;
}

.hidden-in-30ac .highlight-slow-0c6d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hidden-in-30ac .row-f2b1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hot-d662 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot-d662 .tertiary_e554 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot-d662 .backdrop_liquid_d8eb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-d662 .backdrop_liquid_d8eb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hot-d662 .backdrop_liquid_d8eb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.accordion-af83 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.banner-orange-ffee {
    padding: var(--section-padding);
}

.bottom-76b5 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bottom-76b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_c883 {
    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);
}

.complex_c883:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.complex_c883 .wrapper_selected_de8d {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_c883 .wrapper-8af7 {
    flex: 1;
}

.complex_c883 .gradient-hot-e844 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex_c883 .disabled_solid_36ef {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dropdown_clean_1e0d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_clean_1e0d .status-089f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_clean_1e0d .backdrop-center-6810 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.dropdown_clean_1e0d .backdrop-center-6810 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);
}

.dropdown_clean_1e0d .backdrop-center-6810 li:last-child {
    border-bottom: none;
}

.dropdown_clean_1e0d .backdrop-center-6810 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;
}

.dropdown_clean_1e0d .backdrop-center-6810 li strong {
    color: var(--text-white);
}

.stone_0043 {
    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);
}

.stone_0043 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stone_0043 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.aside_copper_ee69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_paper_4e7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .primary_paper_4e7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-easy-9cd0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.highlight-easy-9cd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header-e965 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.east-a278 {
    font-size: 2rem;
}

.table_next_1ef0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.static_d640 {
    flex: 1;
}

.full_7d6f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full_7d6f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.full_7d6f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.progress_ff6a {
    margin-top: 3rem;
}

.notice_dark_726c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.input_95bd {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fluid_8476 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fluid_8476 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fluid_8476 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fluid_8476 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.wrapper_focused_aa8c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-17e9 {
    margin: 2rem 0;
}

.accent-92bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accent-92bf .summary-fluid-26d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component-solid-4716 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .component-solid-4716 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dirty-edb9 {
    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);
}

.dirty-edb9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.avatar_middle_572a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.last_39e2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.row_4324 {
    padding: var(--section-padding);
}

.static-436b {
    margin: 2rem 0;
}

.paragraph-2ce0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .paragraph-2ce0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-2ce0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_7087 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pattern_7087:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.stone_447a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rough_1c79 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.container-advanced-97b4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.container-advanced-97b4.summary-3961 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gallery_liquid_33db {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.column_45ac {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tiny_e83e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in_6a68 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hard_cad9 {
    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);
}

.hard_cad9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_cad9 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.mask-next-5520 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south-e511 {
    margin: 2rem 0;
}

.module-1d33 {
    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) {
    .module-1d33 {
        flex-direction: column;
        gap: 1rem;
    }
}

.module-1d33:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.module-1d33::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);
}

.box-7cfc {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.yellow_c2d5 {
    flex: 1;
}

.secondary-static-b581 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bright_a4e2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright_a4e2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.in_823e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-brown-80e0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.east_bb6a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .east_bb6a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-ca92 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hard_15f3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hot_0401 {
    flex: 1;
}

.complex_13ef {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.caption-bd92 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.purple_acb4 {
    margin-top: 2rem;
    text-align: center;
}

.north-a3de {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-a3de strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.thumbnail-right-b406 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-right-b406 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_663c {
    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);
}

.picture_663c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.picture_663c .video_pink_e5ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_663c .column-ed85 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.picture_663c .element_gold_b213 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.picture_663c .steel_d152 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slider_11ea {
    padding: var(--section-padding);
}

.row-bc5f .small_3e11 {
    flex: 1;
}

/* Promo Calendar Section */
.mini_c69f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_65e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_65e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_4e9a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_a87e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.chip-first-3523 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.huge_7aef {
    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);
}

.large_c2d4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.content_c0b7 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.outline_purple_55cd {
    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);
}

.outline_purple_55cd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline_purple_55cd strong {
    color: var(--accent-color);
}

/* Requirements Section */
.pink-2af1 {
    padding: var(--section-padding);
}

.description_6230 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .description_6230 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.simple_1820 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-c6e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel-hard-ddf0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-hard-ddf0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-hot-5654 {
    margin-top: 3rem;
}

.logo-hot-5654 .notice_dark_726c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.logo-hot-5654 .input_95bd {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-hot-5654 .fluid_8476 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.logo-hot-5654 .fluid_8476 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.logo-hot-5654 .fluid_8476 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.logo-hot-5654 .fluid_8476 li strong {
    color: var(--warning-color);
}

.slider_middle_6a4c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider_middle_6a4c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.plasma_e558 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-tiny-b004 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-tiny-b004 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.yellow-22c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow-22c0 .summary-fluid-26d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.old-f8ce {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slow-bbd6 {
    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);
}

.slow-bbd6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mini_d707 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-5272 {
    flex: 1;
}

.tooltip_soft_805c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.old_e4b9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accent-568f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.message-82f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo-wood-3f80 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .logo-wood-3f80 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-a8f4 {
    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);
}

.east-a8f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-12b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.silver_d961 {
    color: var(--text-gray);
    font-size: 1rem;
}

.north_2e87 {
    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);
}

.footer_c756 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.footer_c756 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.glass-b7fb { 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; }
.box_003d, .slider-dirty-9c7f { max-width:100%; height:auto; }

.plasma-1dc5, .carousel_b16b, .center-e0c8 { white-space:normal; }

.content_70b7,
.notification-fe11,
.silver_c338,
.thumbnail-right-b406,
.bright_00a0,
.filter-tiny-96a7 {
  flex-wrap:wrap;
}

[class*="grid"],
.logo-wood-3f80,
.paragraph-2ce0,
.active_2cd8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.notification-rough-0207 img,
.notification-fe11 img,
.tabs_south_2634 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.up_f02a, .bronze-aa97,
.info-copper-351c, .hovered_88eb {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.caption-advanced-485f { width:100%; overflow-x:auto; }
.caption-advanced-485f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.out_5aba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .out_5aba {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.shadow-3a9c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.button_basic_69a8,
.plasma_5850,
.info_9a50,
.media-b8c2,
.easy-4bd5,
.logo-wood-3f80,
.paragraph-2ce0,
.active_2cd8,
.thumbnail-pro-dde7,
.paragraph-solid-f11e,
.out_5aba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .button_basic_69a8,
  .plasma_5850,
  .info_9a50,
  .media-b8c2,
  .easy-4bd5,
  .logo-wood-3f80,
  .paragraph-2ce0,
  .active_2cd8,
  .thumbnail-pro-dde7,
  .paragraph-solid-f11e,
  .out_5aba {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.small_093d,
.item-cb2e,
.east-a8f4,
.preview-4c8a,
.pattern_7087,
.accent_eecf,
.tooltip_lite_0892,
.shadow-3a9c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.footer_complex_28f9,
.mask_edea,
.alert-b185 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer_complex_28f9 > *,
.mask_edea > *,
.alert-b185 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 04db */
.phantom-card-z2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.1;
}
