/* {$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;
}

.highlight_bc5d {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.silver_60ff {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .silver_60ff {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .silver_60ff {
        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 */
.backdrop-ce4d {
    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);
}

.info-simple-2be5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .info-simple-2be5 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .accent_917c {
        grid-column: 1;
    }
    
    .solid-017f {
        grid-column: 2;
    }
    
    .mask_7016 {
        grid-column: 3;
    }
}

.accent_917c img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.accent_917c:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tooltip_basic_10a8 {
    display: none;
}

@media (min-width: 1024px) {
    .tooltip_basic_10a8 {
        display: block;
    }
}

/* Grouped Navigation */
.table-b11f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.aside_86f1 {
    position: relative;
}

.progress-action-9844 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.aside_86f1 .pro_cf1a {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pro_cf1a {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.out-832d {
    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;
}

.out-832d:hover,
.out-832d.fn-active-48cc {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.module_center_0da2 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .module_center_0da2 {
        display: flex;
    }
}

/* Mobile Register Button */
.solid-017f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .solid-017f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.message-481b {
    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;
}

.message-481b::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 */
.mask_7016 {
    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) {
    .mask_7016 {
        display: none;
    }
}

.mask_7016 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.mask_7016.fn-active-48cc span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mask_7016.fn-active-48cc span:nth-child(2) {
    opacity: 0;
}

.mask_7016.fn-active-48cc span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cold_0b64 {
    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;
}

.cold_0b64.fn-active-48cc {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.south-202e {
    overflow: hidden;
}

.slow_de3f {
    list-style: none;
    padding: 0.75rem 0;
}

.in-8c39 {
    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;
}

.in-8c39:hover,
.in-8c39.fn-active-48cc {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.in-8c39.header-bottom-4c61 {
    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;
}

.in-8c39.header-bottom-4c61::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 */
.heading-fresh-df13 {
    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;
}

.tiny-769f {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tiny-769f:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.dirty-92f9 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.dirty-92f9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.filter_mini_30e7 {
    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;
}

.filter_mini_30e7:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.text_aebd {
    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;
}

.secondary-gold-3993 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.secondary-gold-3993:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.stone-fcc7 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.stone-fcc7:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focused-a637 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focused-a637: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);
}

.element_lite_e41b {
    font-size: 1em;
    font-weight: 700;
}

.tiny-8232 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.east_f3e0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.east_f3e0::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;
}

.tooltip-2b09 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tooltip-2b09 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.warm_c381 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.silver-75af {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.logo_ff5b {
    margin-bottom: 2rem;
}

.banner-8610 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .banner-8610 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-7eaa {
    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);
}

.form_0f39 {
    font-size: 1.5rem;
}

.light-c69e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.brown_ef74 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-prev-3f8d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.progress-prev-3f8d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.shade-6373 {
    text-align: center;
    margin-bottom: 3rem;
}

.easy-c947 {
    margin-bottom: 1rem;
}

.fresh_de91 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.media-d5dd {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .media-d5dd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .media-d5dd.solid_0e0d {
        direction: rtl;
    }
    
    .media-d5dd.solid_0e0d > * {
        direction: ltr;
    }
}

.popup-c73a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.popup-c73a:first-child {
    margin-top: 0;
}

.caption_smooth_46e6 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.main_d511 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.main_d511:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.summary_wood_73bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_wood_73bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_liquid_376a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-dfe3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fixed_7bbc {
    list-style: none;
}

.fixed_7bbc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed_7bbc li:last-child {
    border-bottom: none;
}

/* Games Features */
.prev_b8f7 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-a3d8 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.old-a8e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pink_2143 {
    margin: 2rem 0;
}

.over_9b6f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.medium-b1dc {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.breadcrumb-0fda {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.badge_solid_80b0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.down-e2e2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-e2e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-center-a6f8 {
    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);
}

.mask-center-a6f8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider_liquid_2489 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.accent_2c2d {
    font-size: 1.5rem;
}

.text_0815 {
    color: var(--accent-color);
    margin: 0;
}

.focus-90fc {
    list-style: none;
}

.focus-90fc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.focus-90fc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.hovered_0758 {
    margin: 2rem 0;
}

.notification-pressed-c4f4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.title-glass-b0f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .title-glass-b0f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-215b {
    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);
}

.tiny_4537 {
    font-size: 1.25rem;
}

.notice_fresh_3b56 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.picture-motion-4f93,
.wrapper_c6c4 {
    text-align: center;
    margin: 2rem 0;
}

.thick_9ba8,
.under_c091 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.smooth_633e {
    margin: 2rem 0;
    text-align: center;
}

.carousel-hovered-ec59 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.carousel-hovered-ec59::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;
}

.mini_bd1e {
    position: relative;
    z-index: 1;
}

.plasma_08c1 {
    margin-bottom: 1rem;
}

.info_medium_b4d8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.label_gas_8557 {
    margin-bottom: 3rem;
}

.sort-brown-c65e {
    margin-top: 3rem;
}

.action-1a1f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .action-1a1f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-1a1f .video-7eaa {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_36ca {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall-8eed {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.header-e6db {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.cold_7034 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .cold_7034 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold_7034 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.table_fixed_0ce6 {
    margin-bottom: 1rem;
}

.sidebar_be3a img {
    margin-bottom: 1rem;
}

.action_7c49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh-4c38 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.label-stone-9ead {
    list-style: none;
}

.label-stone-9ead li {
    margin-bottom: 0.5rem;
}

.label-stone-9ead a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.label-stone-9ead a:hover {
    color: var(--accent-color);
}

.glass_1684 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.caption-dirty-ec66 {
    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);
}

.caption-dirty-ec66:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.dark_23e1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.dark_23e1 p {
    margin-bottom: 0.25rem;
}

.badge-small-85a3 {
    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) {
    .badge-small-85a3 {
        flex-direction: row;
    }
}

.action-de4a {
    text-align: center;
}

@media (min-width: 768px) {
    .action-de4a {
        text-align: left;
    }
}

.action-de4a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner-8942 {
    font-size: 0.75rem !important;
}

.dropdown_16b1 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.glass-9c2d {
    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);
    }
}

.north-29a3 {
    animation: fadeInUp 0.6s ease-out;
}

.up_1ef3 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.photo_b09f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_b09f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.description-stale-1ad9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-stale-1ad9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_large_3aa2 {
    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);
}

.alert_large_3aa2 .old-a8e9 {
    font-size: 1.25rem;
}

.alert_large_3aa2 .row_ceb2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.highlight_ae11 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_ae11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_72dd {
    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);
}

.stone_72dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-b803 {
    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);
}

.active-out-8986 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.red_ed2f {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_9000 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-west-b068 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip-west-b068 .iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip-west-b068 .fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.under_3050 {
    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);
}

.input-6a7f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input-6a7f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input-6a7f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.down-c108 {
    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);
}

.input_80fe {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.light_6559 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.light_6559 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.light_6559 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);
}

.light_6559 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.light_6559 input::placeholder {
    color: var(--text-muted);
}

.cold_3006 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.inner_4054 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.inner_4054 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pressed-7afb {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pressed-7afb:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.title-glass-b0f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-glass-b0f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-215b {
    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);
}

.top-215b .tiny_4537 {
    font-size: 1.25rem;
}

.top-215b .notice_fresh_3b56 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.picture-fa2c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-3776 {
    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);
}

.input-3776 .old-a8e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input-3776 .iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input-3776 .fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-inner-cc4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-a713 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.progress-a713 .pink-069d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-a713 .hard_fa7a {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_5cf3 {
    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);
}

.hot_298f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hot_298f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-166b {
    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);
}

.pro-166b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_6be7 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.component_520e {
    flex: 1;
}

.white-8e0a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tertiary-basic-f71b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mask_e085 {
    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);
}

.mask_e085:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.glass_ddfb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_ddfb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_fresh_0e97 {
    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);
}

.header_fresh_0e97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_5d9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-706c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message_693e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.current_8cb4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph_short_e6f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-south-1e11 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first_31e4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.first_31e4 .background-east-3a25 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_31e4 .top_b45c {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_5678 {
    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);
}

.backdrop_light_7778 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-8bc1 {
    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);
}

.north-8bc1 .old-a8e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-8bc1 .iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.north-8bc1 .fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_red_d3bf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_red_d3bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom_9167 {
    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);
}

.bottom_9167:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.detail-9da2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-9da2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-14e5 {
    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);
}

.notification-14e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-hot-eca2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-5245 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.medium-b1dc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.down-5554 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.element_hot_0b75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_4304 {
    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);
}

.accent_4304:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-407d {
    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);
}

.block-south-c55f {
    flex: 1;
}

.bottom_3f84 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.video_dark_aaa8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fluid_e80a {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm_1d60 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first-440a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first-440a .pink-069d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first-440a .hard_fa7a {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_c6c4 {
    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);
}

.component_cac4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_cac4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.element_bronze_11fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_bronze_11fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-9f33 {
    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);
}

.focus-9f33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink-a8b5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu-dirty-6845 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content_7be2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.short_9a22 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-first-d688 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-soft-1654 {
    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);
}

.inner_a3d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_c29e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component-smooth-2593 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_light_7778 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-8bc1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.north-8bc1 .iron-814a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north-8bc1 .fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-black-018f {
    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);
}

.overlay-advanced-5fe9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .overlay-advanced-5fe9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay-advanced-5fe9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-a283 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-a283:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow-d93c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.module-liquid-89bf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary-thick-e950 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.slider-focused-d14e {
    padding: 1.5rem;
}

.tertiary_medium_c1f3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active-1140 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-1140 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;
}

.active-1140 li:last-child {
    border-bottom: none;
}

.active-1140 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.header_hard_5efc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_hard_5efc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_full_7c0d {
    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);
}

.title_full_7c0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_dddd {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu-9b7f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture-0458 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.glass_0763 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.in_b2a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-ec5a {
    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);
}

.copper_b412 {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma-802a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_smooth_e5a8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-inner-dc60 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.box_soft_f3e2 {
    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);
}

.glass-25c0 {
    text-align: center;
}

.hot_462c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_6ab7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.rough-0d01 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-stone-c2f8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-stone-c2f8 .iron-814a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-stone-c2f8 .fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-8841 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .rough-8841 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough-8841 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-bcc2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-bcc2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-5bbc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_yellow_8f0c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.iron-814a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.layout-cold-91d2 {
    padding: 1.5rem;
}

.fixed_77dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.small-8ac5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-8ac5 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;
}

.small-8ac5 li:last-child {
    border-bottom: none;
}

.small-8ac5 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.wood_de05 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.orange-4d7e {
    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);
}

.orange-4d7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-fc90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-244c {
    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);
}

.content-b803 {
    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;
}

.active-out-8986 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.red_ed2f {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-copper-5fe3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-5de9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wood-53c5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status-097b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.focused_57ab {
    display: flex;
    gap: 1rem;
}

.focused_57ab .lite_febf {
    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;
}

.text-516a {
    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);
}

.surface-e10b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description-mini-79a2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-mini-79a2 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;
}

.description-mini-79a2 li:last-child {
    border-bottom: none;
}

.description-mini-79a2 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.dark_02f6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dark_02f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark_02f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_a19d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dirty_a19d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table-rough-7c9c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.video_de59 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.background-east-3a25 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bottom_3015 {
    font-size: 1rem;
}

.south-5618 {
    padding: 1.5rem;
}

.top_b45c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.surface_last_a388 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.surface_last_a388 .glass-25c0 {
    text-align: center;
}

.surface_last_a388 .row_6ab7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.surface_last_a388 .tabs-f9f7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline_pro_6818 {
    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);
}

.outline_pro_6818:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.item_2d59 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_2d59 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-purple-2e3d {
    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);
}

.secondary-purple-2e3d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_outer_c0b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_bright_c56f {
    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);
}

.old-7087 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite-6f31 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-dynamic-c2b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_b47d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.notification-soft-12d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-7af6 {
    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);
}

.center-ece8 {
    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;
}

.center-ece8.component_dcd6 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.center-ece8.gallery_wide_da55 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.center-ece8.shade_6406 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.center-ece8.image_0b2b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.center-ece8.out_898b {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.box_silver_fe30 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.content_top_96b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-40b2 {
    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);
}

.purple-85eb {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge-inner-cc4b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-inner-cc4b 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;
}

.badge-inner-cc4b li:last-child {
    border-bottom: none;
}

.badge-inner-cc4b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.frame-17d8 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame-17d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-17d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_b9b4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_b9b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_b9b4.background-8308 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .footer_b9b4.background-8308 {
        grid-column: span 3;
    }
}

.complex-e3b6 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.footer_b9b4.background-8308 .complex-e3b6 {
    background: rgba(6, 182, 212, 0.1);
}

.icon_dim_ee66 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.aside_hot_6768 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.footer_b9b4.background-8308 .aside_hot_6768 {
    color: var(--info-color);
}

.grid-d083 {
    padding: 1.5rem;
    text-align: center;
}

.border-dim-5667 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.footer_b9b4.background-8308 .border-dim-5667 {
    color: var(--info-color);
}

.current-e355 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.banner_prev_8042 {
    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 */
.footer-in-a568 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-in-a568 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static_a6b6 {
    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);
}

.static_a6b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-a1b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-3776 {
    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);
}

.tiny_4537 {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-2a09 {
    flex: 1;
}

.notification-pressed-c4f4 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid-05e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-yellow-e1dd {
    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);
}

.avatar-853e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.upper-4c52 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.glass-9c2d {
    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);
}

.element_0036 {
  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);
}

.element_0036 .glass-25c0 {
    text-align: center;
}

.element_0036 .hot_462c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.element_0036 .row_6ab7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tiny-ca28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_easy_958a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_d0be {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block_focused_a369 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_653b {
    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);
}

.south-9a5a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture-stone-762b {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-8611 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first-8611 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first-8611 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-82e6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo-82e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-middle-fb27 {
    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);
}

.blue-942d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accordion-fast-2415 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.section_dark_e053 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section_dark_e053.media_fixed_a6c0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.section_dark_e053.tooltip-b20a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.section_dark_e053.chip_47b3 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.easy-8092 {
    padding: 1.5rem;
    text-align: center;
}

.up_97a0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.black_ccf2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.black_ccf2 .active-white-6055 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.panel-7f5e {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.panel-7f5e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.alert_23de {
  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);
}

.picture_fixed_865b {
    text-align: center;
}

.picture_fixed_865b .hot_462c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.picture_fixed_865b .row_6ab7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.right-be73 { text-align: center; }
.disabled-motion-2dc3 { text-align: left; }
.nav-west-728c { text-align: right; }

.wide_471f { margin-bottom: 0; }
.paragraph-0a83 { margin-bottom: 0.5rem; }
.static-bda7 { margin-bottom: 1rem; }
.outline_d8c7 { margin-bottom: 1.5rem; }
.label_7858 { margin-bottom: 2rem; }

.down-1bbf { margin-top: 0; }
.brown-d130 { margin-top: 0.5rem; }
.simple_e6bb { margin-top: 1rem; }
.green_db50 { margin-top: 1.5rem; }
.section_cool_51d4 { margin-top: 2rem; }

.fn-hidden-48cc { display: none; }
.fn-visible-48cc { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .east_f3e0 {
        padding: 6rem 0 3rem;
    }
    
    .tooltip-2b09 {
        text-align: center;
    }
    
    .media-d5dd {
        text-align: center;
    }
    
    .banner-8610 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .backdrop-ce4d,
    .cold_0b64,
    .carousel-hovered-ec59,
    .header-e6db {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .east_f3e0 {
        background: none;
    }
}

/* Providers Section */
.smooth-133f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange_ea2c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_ea2c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .orange_ea2c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-0c84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-0c84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notice-slow-f867 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.last_2aff {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copper_9536 {
    list-style: none;
    padding: 0;
}

.copper_9536 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.copper_9536 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.new_a1d4 {
    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);
}

.new_a1d4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.center_b833 {
    padding: var(--section-padding);
}

.overlay_plasma_6c88 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_plasma_6c88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_67b0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small_67b0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.chip_149e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notification_a261 {
    display: flex;
    flex-direction: column;
}

.search-brown-6d6b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hidden_medium_da56 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.over_c47f {
    color: var(--accent-color);
}

.complex_58c6 {
    font-size: 1.25rem;
}

.filter-wide-c1bd {
    margin-bottom: 1rem;
}

.filter-wide-c1bd p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tall_6e47 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.light_cef8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.glass-25c0 {
    text-align: center;
}

.hot_462c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_6ab7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.summary-7ed3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-next-3e3f {
    margin: 2rem 0;
}

.aside-af27 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.aside-af27 .old-a8e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-fb89 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.orange-2e13 {
    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;
}

.orange-2e13:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-7949 {
    font-size: 2rem;
}

.pattern-3590 {
    display: flex;
    flex-direction: column;
}

.selected-26c0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.avatar_action_d604 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.component_f384 {
    padding: var(--section-padding);
}

.menu-0844 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu-0844 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-0844 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first-4311 {
    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);
}

.first-4311:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-4311 .hot_462c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.first-4311 .row_6ab7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.first-4311 .filter-hard-6b6a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.container-2a00 {
    margin-top: 4rem;
}

.gold-ca5c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.avatar-soft-0ffc {
    overflow-x: auto;
}

.paragraph-bottom-22a3 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.paragraph-bottom-22a3 thead {
    background: var(--accent-color);
}

.paragraph-bottom-22a3 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.paragraph-bottom-22a3 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-bottom-22a3 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.paragraph-bottom-22a3 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.image_d703 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-center-e9c3 {
    max-width: 900px;
    margin: 0 auto;
}

.medium_8d92 {
    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);
}

.medium_8d92:hover {
    border-color: var(--accent-color);
}

.article-dbad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.article-dbad h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.chip-focused-91f6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.medium_8d92.fn-active-48cc .chip-focused-91f6 {
    transform: rotate(45deg);
}

.table_left_1586 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.medium_8d92.fn-active-48cc .table_left_1586 {
    max-height: 1000px;
}

.table_left_1586 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.layout_9a6e {
    padding: var(--section-padding);
}

.input-6a7f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.shadow-west-e1ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-lower-3036 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-lower-3036 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-bronze-c64d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_fbe2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.item_middle_7317 {
    font-size: 2rem;
}

.dropdown-focused-16fa {
    color: var(--text-white);
    margin: 0;
}

.dirty_dfd8 {
    list-style: none;
    padding: 0;
}

.dirty_dfd8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dirty_dfd8 li:last-child {
    border-bottom: none;
}

.gallery_out_8e2e {
    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);
}

.gallery_out_8e2e p {
    color: var(--success-color);
    margin: 0;
}

.texture_b870 {
    margin-top: 3rem;
}

.surface-e10b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dim-8117 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim-8117 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.background_a17c {
    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);
}

.selected_04f1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.background_a17c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.disabled-narrow-24d8 {
    padding: var(--section-padding);
}

.section-9d60 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-9d60 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-solid-1204 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-solid-1204:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.large-bafb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pink-a0df {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.middle_0218 {
    flex: 1;
}

.gradient-6ef5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.highlight_action_e653 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.south-d5d8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-5297 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rough-5297:last-child {
    border-bottom: none;
}

/* Comparison Section */
.sort_red_82a8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dim_4f09 {
    padding: var(--section-padding);
}

.wrapper_soft_3327 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.accent_dim_e657 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_dim_e657 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_936a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_ff6a, .outline-56fe, .article_6336 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.article_6336 {
    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 */
.item_brown_2af7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_28ec {
    margin: 2rem 0;
}

.pressed_65b6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-c450 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.list_d3b4 {
    list-style: none;
    padding: 0;
}

.list_d3b4 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;
}

.list_d3b4 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.list_d3b4 li:last-child {
    border-bottom: none;
}

.inner-3559 {
    text-align: center;
    margin-top: 2rem;
}

.outline-in-32ac {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.layout-basic-7e7d {
    padding: var(--section-padding);
}

.warm_b7c4 {
    margin: 2rem 0;
}

.warm_0e57 {
    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) {
    .warm_0e57 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.warm_0e57:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dim_166c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.tertiary_0286 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.current_3bde {
    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;
}

.image_north_2d77 {
    flex: 1;
}

.caption-hard-8d96 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.list-9ba7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary-dim-4dd4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.hidden_8d30 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .hidden_8d30 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.menu-yellow-ea84 {
    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);
}

.menu-yellow-ea84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.menu-yellow-ea84 .hot_462c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu-yellow-ea84 .row_6ab7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.input-short-a9e2 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_tall_fb61 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.label_tall_fb61 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.grid_374d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .grid_374d {
        grid-template-columns: 1fr 1fr;
    }
}

.shadow-c07b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-fc36 {
    margin-bottom: 1.5rem;
}

.focus-fc36 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.focus-fc36 input,
.focus-fc36 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;
}

.focus-fc36 input:focus,
.focus-fc36 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.heading_0079 {
    width: 100%;
    margin-top: 1rem;
}

.outline-3dcd {
    display: flex;
    align-items: center;
}

.table_aa67 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.form-b3e9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.footer-ca06 {
    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;
}

.block-447e {
    color: var(--text-gray);
}

.middle-e90e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dark-2516 {
    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);
}

.dark-2516 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.video-1b0b {
    margin-top: 3rem;
}

.box_current_9ba7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.new-5dfa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-7070 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.surface_warm_742b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.surface_warm_742b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.footer-f2c0 {
    padding: var(--section-padding);
}

.element_north_9156 {
    margin: 2rem 0;
}

.icon_solid_a90f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.liquid-8600 {
    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;
}

.liquid-8600:hover, .liquid-8600.fn-active-48cc {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.highlight-brown-2029 {
    display: none;
}

.highlight-brown-2029.fn-active-48cc {
    display: block;
}

.accent_90a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-stale-793e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert-cc72 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.alert-cc72 ul {
    list-style: none;
    padding: 0;
}

.alert-cc72 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.alert-cc72 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.aside_37de {
    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 */
.hard-4133 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_de9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-60bd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pink_e9e7 {
    color: var(--accent-color);
    margin: 0;
}

.article_a22a {
    display: flex;
    gap: 1.5rem;
}

.article-ad16 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fluid_4944 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.thumbnail_0eb2 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.thumbnail_0eb2.paragraph_tall_9789 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.thumbnail_0eb2.accordion-wood-4a6e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.thumbnail_0eb2.media_8067 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.shadow_ebd1 {
    margin-top: 2rem;
}

.sort-08d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.steel_5717 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .steel_5717 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-out-f799 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.fresh-7414 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.light_76de {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.media-8ab9 {
    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 */
.row_bright_b3d1 {
    padding: var(--section-padding);
}

.block_clean_b8b8 {
    margin: 2rem 0;
}

.filter_5fe3 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.wrapper_cf97 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.card_b6b0 {
    list-style: none;
    padding: 0;
}

.card_b6b0 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;
}

.card_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.card_b6b0 li:last-child {
    border-bottom: none;
}

.tabs_4006 {
    margin: 2rem 0;
}

.bright_bf0f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shadow-dirty-69bb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shadow-dirty-69bb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary_clean_9d63 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-tall-9113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red-1a91 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.filter_mini_6c1b {
    margin-top: 2rem;
}

.white-8e0a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.dirty_a20a {
    list-style: none;
    padding: 0;
}

.form_5331 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.form_5331 a {
    color: var(--accent-color);
    text-decoration: none;
}

.form_5331 a:hover {
    text-decoration: underline;
}

.picture-60bc {
    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 */
.iron_99f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-ce5e {
    margin: 2rem 0;
}

.header_inner_744c {
    margin-bottom: 3rem;
}

.header_inner_744c .cool-c450 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.item_stone_2dc7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shadow_2e5e {
    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);
}

.shadow_2e5e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.middle_cb26 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .middle_cb26 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_18cd {
    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 */
.cool_3e6c {
    padding: var(--section-padding);
}

.green-7956 {
    margin: 2rem 0;
}

.out_3b37 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper-fixed-c27d {
    overflow-x: auto;
    margin: 2rem 0;
}

.tertiary-hot-2743 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.alert-fc2d {
    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;
}

.feature-upper-d568 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.block_white_e7b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .block_white_e7b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-huge-6b77 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-huge-6b77 .old-a8e9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.element-huge-6b77 .iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pink_8e32 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.clean-f7db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough_ab82 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_ab82 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-solid-cdf8 {
    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;
}

.modal-solid-cdf8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.link_fe7c {
    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);
}

.tag-silver-0d8d {
    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;
}

.medium-9ee4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary_2398 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.image_old_4173 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.picture-iron-8d90 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview_c3c6 {
    color: var(--text-white);
    font-weight: 600;
}

.hover_up_a759 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block_stale_1434 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.block_stale_1434 .lite_febf {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dynamic_1348 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dynamic_1348 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_pressed_060e {
    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);
}

.widget_pressed_060e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.widget_pressed_060e .hot_462c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget_pressed_060e .row_6ab7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.outline_last_bd19 {
    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);
}

.accordion_3ea7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.accordion_3ea7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.menu-first-d688 {
    margin: 2rem 0;
}

.summary-soft-1654 {
    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);
}

.summary-soft-1654:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.inner_a3d1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.motion-c6f0 {
    flex: 1;
}

.complex_c29e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component-smooth-2593 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.backdrop_light_7778 {
    margin: 2rem 0;
}

.north-8bc1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north-8bc1 .iron-814a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.north-8bc1 .fixed_77dd {
    color: var(--text-gray);
    margin: 0;
}

.paragraph-black-018f {
    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);
}

.paragraph-black-018f .thick_9ba8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.pink_8e32 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.solid-407d {
    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;
}

.block-south-c55f {
    flex: 1;
}

.video_dark_aaa8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.fluid_e80a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.content-b803 {
    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;
}

.backdrop_f523 {
    flex: 1;
}

.active-out-8986 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.red_ed2f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.wood-53c5 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.status-097b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.focused_57ab {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.focused_57ab .lite_febf {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.text-516a {
    margin-top: 2rem;
}

.text-516a .surface-e10b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.gas_eb5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_soft_f3e2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box_soft_f3e2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_soft_f3e2 .glass-25c0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-0d01 {
    margin: 2rem 0;
}

.active-stone-c2f8 {
    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 */
.sidebar_8eb4 {
    padding: var(--section-padding);
}

.layout-cold-91d2 {
    margin-top: 1rem;
}

.small-8ac5 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.small-8ac5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.small-8ac5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.text_next_b69c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid_b988 {
    margin: 2rem 0;
}

.description_3837 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.under_150b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.outer-44f7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.mask_ce07 {
    margin: 2rem 0;
}

.modal-cool-0d45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.modal-cool-0d45 .cool-c450 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_43c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .table_43c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-546c {
    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);
}

.popup-active-5f9d {
    color: var(--text-white);
    font-weight: 600;
}

.medium_a176 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.module-830e {
    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);
}

.module-830e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.container-iron-f013 {
    padding: var(--section-padding);
}

.surface-hot-ba63 {
    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;
}

.surface-hot-ba63:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dropdown_action_2cad {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown_action_2cad .selected_04f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_action_2cad .item-hard-98d5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.frame-ca20 {
    flex: 1;
}

.active_ae9e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cool_2adb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool_2adb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cool_2adb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.list-stale-6a5c {
    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);
}

.list-stale-6a5c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.list-stale-6a5c strong {
    color: var(--warning-color);
}

/* Slots Section */
.gradient_5392 {
    padding: var(--section-padding);
}

.paragraph_short_e6f7 {
    margin: 2rem 0;
}

/* Table Games Section */
.slow-996a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-south-1e11 {
    margin: 2rem 0;
}

.first_31e4 {
    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);
}

.first_31e4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.first_31e4 .background-east-3a25 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_31e4 .top_b45c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.input_5678 {
    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);
}

.input_5678 .thick_9ba8 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.nav_5eb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-dc3d {
    margin: 2rem 0;
}

.list-south-84d7 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-steel-6baa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark_ac5a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.widget-7732 {
    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);
}

.widget-7732:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.widget-7732.fn-active-48cc {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_7fcb {
    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);
}

.aside_ca33 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside_ca33 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.module_light_41f9 {
    padding: var(--section-padding);
}

.form-hard-3e50 {
    margin: 2rem 0;
}

.detail_steel_eefa {
    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);
}

.detail_steel_eefa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .detail_steel_eefa {
        flex-direction: column;
        align-items: flex-start;
    }
}

.outline-under-738d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.link-west-680a {
    flex: 1;
}

.form-yellow-fa60 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fluid-84ab {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.old-73f4 {
    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;
}

.center-2930 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.motion-f035 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video_tiny_6891 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link_ef00 {
    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;
}

.link_ef00:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.block-basic-d12b {
    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);
}

.focus-54e2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus-54e2 strong {
    color: var(--accent-color);
}

/* New Games Section */
.stone-9fdb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-210e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav-210e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-210e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_stale_912c {
    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;
}

.element_stale_912c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert-f270 {
    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;
}

.filter_bronze_e35d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.out-89fe {
    font-size: 2rem;
}

.grid-easy-404a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.border_d95c {
    flex: 1;
}

.wide-4850 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.fresh-679f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.label-e002 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.static_6c4a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wide_2a74 {
    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;
}

.wood-5b27 {
    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;
}

.wood-5b27:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask_955c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_4aac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cool-7e5f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cool-7e5f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_selected_8428 {
    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);
}

.dynamic_7e8a {
    color: var(--text-white);
    font-weight: 600;
}

.bottom_4c0a {
    color: var(--accent-color);
    font-weight: 600;
}

.border-under-278f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.border-under-278f strong {
    color: var(--accent-color);
}

/* Security Section */
.container-dirty-a66d {
    padding: var(--section-padding);
}

/* Benefits Section */
.fluid-6264 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.warm-dc1a {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.thumbnail_e825 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-smooth-430b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.popup-current-5dfb {
    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) {
    .popup-current-5dfb {
        flex-direction: column;
        gap: 1rem;
    }
}

.popup-current-5dfb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.popup-current-5dfb .content-b803 {
    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;
}

.popup-current-5dfb .backdrop_f523 {
    flex: 1;
}

.popup-current-5dfb .active-out-8986 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.popup-current-5dfb .red_ed2f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.simple_98e8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple_98e8 .notification-pressed-c4f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple_98e8 .picture-fa2c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_98e8 .picture-fa2c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.simple_98e8 .picture-fa2c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section_b420 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.box-7d15 {
    padding: var(--section-padding);
}

.status_orange_3a77 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .status_orange_3a77 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-hot-2ffe {
    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);
}

.tooltip-hot-2ffe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tooltip-hot-2ffe .text-center-5bd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-hot-2ffe .feature-9d18 {
    flex: 1;
}

.tooltip-hot-2ffe .pink-069d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-hot-2ffe .basic-327b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section-91b0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-91b0 .banner_37a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section-91b0 .last-a658 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.section-91b0 .last-a658 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);
}

.section-91b0 .last-a658 li:last-child {
    border-bottom: none;
}

.section-91b0 .last-a658 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;
}

.section-91b0 .last-a658 li strong {
    color: var(--text-white);
}

.overlay-down-5f3f {
    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);
}

.overlay-down-5f3f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay-down-5f3f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tooltip_459f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_97ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .short_97ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.warm_5c4b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm_5c4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.text_first_250f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-9dda {
    font-size: 2rem;
}

.prev_74b1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.wrapper_13ea {
    flex: 1;
}

.banner_973c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_973c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.banner_973c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column-dirty-d00f {
    margin-top: 3rem;
}

.filter_5fe3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wrapper_cf97 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_b6b0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card_b6b0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.card_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.card_b6b0 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.label_middle_7013 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_eccb {
    margin: 2rem 0;
}

.table_advanced_b535 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.table_advanced_b535 .cool-c450 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark_991f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dark_991f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-top-eb43 {
    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);
}

.title-top-eb43:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.title_soft_5fc0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.secondary-7dfc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tooltip_89a4 {
    padding: var(--section-padding);
}

.status_soft_8ec5 {
    margin: 2rem 0;
}

.item-light-462c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .item-light-462c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item-light-462c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_bca9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.in_bca9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.in_017c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.static-278e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.selected-adc5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.selected-adc5.info-dirty-df2b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.widget-bottom-97f7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.menu-2021 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.blue-cbf8 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.item_narrow_0444 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.advanced_afb0 {
    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);
}

.advanced_afb0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.advanced_afb0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.current-0acd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-large-7453 {
    margin: 2rem 0;
}

.surface-dynamic-3dee {
    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) {
    .surface-dynamic-3dee {
        flex-direction: column;
        gap: 1rem;
    }
}

.surface-dynamic-3dee:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface-dynamic-3dee::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);
}

.carousel_26ce {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hidden_up_ff32 {
    flex: 1;
}

.advanced_8bec {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.block_steel_9a27 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_steel_9a27 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_6f6b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-178b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box_yellow_86a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box_yellow_86a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-75ff {
    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);
}

.smooth_60f9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.motion_5011 {
    flex: 1;
}

.focused_54d7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.first_446c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.cool_5df5 {
    margin-top: 2rem;
    text-align: center;
}

.grid_a695 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid_a695 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.item_2d59 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_2d59 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-purple-2e3d {
    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);
}

.secondary-purple-2e3d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.secondary-purple-2e3d .bottom_dddd {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-purple-2e3d .menu-9b7f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.secondary-purple-2e3d .texture-0458 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.secondary-purple-2e3d .glass_0763 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.carousel_steel_0a10 {
    padding: var(--section-padding);
}

.primary_bright_c56f .banner_fresh_e4b3 {
    flex: 1;
}

/* Promo Calendar Section */
.frame-efc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-b2dd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-b2dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas-7ef8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_1d31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.middle_d4ca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_thick_db75 {
    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);
}

.nav-5c7a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent-static-b65e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.nav_liquid_d707 {
    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);
}

.nav_liquid_d707 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_liquid_d707 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.module_tall_95ab {
    padding: var(--section-padding);
}

.pagination-de29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination-de29 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thumbnail-71c4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-5ac3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-3a6d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-3a6d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.stale_0c20 {
    margin-top: 3rem;
}

.stale_0c20 .filter_5fe3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.stale_0c20 .wrapper_cf97 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale_0c20 .card_b6b0 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.stale_0c20 .card_b6b0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.stale_0c20 .card_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.stale_0c20 .card_b6b0 li strong {
    color: var(--warning-color);
}

.surface_1652 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface_1652 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.wrapper_902a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_c8a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_c8a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-short-4f59 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-short-4f59 .cool-c450 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.module_dim_b83d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.up-0f0a {
    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);
}

.up-0f0a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.alert-red-fee9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-3411 {
    flex: 1;
}

.active_under_1dde {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.notice-gas-3a50 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.picture-clean-8980 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.fast_98b4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bright-2530 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .bright-2530 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_upper_e41a {
    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);
}

.layout_upper_e41a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gas-2a95 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden-49f4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.label_tall_fb61 {
    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);
}

.upper_69ab {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.upper_69ab strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.silver_60ff { 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; }
.progress-prev-3f8d, .main_d511 { max-width:100%; height:auto; }

.heading-fresh-df13, .filter_mini_30e7, .text_aebd { white-space:normal; }

.tooltip-2b09,
.media-d5dd,
.footer-in-a568,
.item_2d59,
.backdrop_light_7778,
.first-8611 {
  flex-wrap:wrap;
}

[class*="grid"],
.bright-2530,
.item-light-462c,
.action-1a1f {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.east_f3e0 img,
.media-d5dd img,
.brown_ef74 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.warm_c381, .silver-75af,
.easy-c947, .fresh_de91 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.avatar-soft-0ffc { width:100%; overflow-x:auto; }
.avatar-soft-0ffc table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.orange_ea2c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .orange_ea2c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.backdrop-0c84 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.menu-0844,
.avatar-1f37,
.shade-bottom-4120,
.lite-90a3,
.hidden_8d30,
.bright-2530,
.item-light-462c,
.action-1a1f,
.alert_23de,
.form-hard-3e50,
.orange_ea2c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .menu-0844,
  .avatar-1f37,
  .shade-bottom-4120,
  .lite-90a3,
  .hidden_8d30,
  .bright-2530,
  .item-light-462c,
  .action-1a1f,
  .alert_23de,
  .form-hard-3e50,
  .orange_ea2c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.first-4311,
.menu-yellow-ea84,
.layout_upper_e41a,
.video-7eaa,
.in_bca9,
.picture_fixed_865b,
.detail_steel_eefa,
.backdrop-0c84 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.notice_125d,
.texture-cedb,
.slow-29a0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.notice_125d > *,
.texture-cedb > *,
.slow-29a0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 0a9f */
.phantom-card-c0 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
