/* {$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;
}

.pro-2501 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.surface-liquid-d64e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .surface-liquid-d64e {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .surface-liquid-d64e {
        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 */
.overlay_huge_77d6 {
    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);
}

.box_top_c11c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .box_top_c11c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .copper-49e5 {
        grid-column: 1;
    }
    
    .module_mini_eb50 {
        grid-column: 2;
    }
    
    .dim_62c2 {
        grid-column: 3;
    }
}

.copper-49e5 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.copper-49e5:hover img {
    transform: scale(1.05);
}

/* Navigation */
.shadow_hard_c039 {
    display: none;
}

@media (min-width: 1024px) {
    .shadow_hard_c039 {
        display: block;
    }
}

/* Grouped Navigation */
.active-8e7a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.highlight_short_c0c2 {
    position: relative;
}

.tabs_bottom_3da3 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.highlight_short_c0c2 .highlight_plasma_3596 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.highlight_plasma_3596 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.large-1d11 {
    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;
}

.large-1d11:hover,
.large-1d11.fn-active-d521 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.red-f736 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .red-f736 {
        display: flex;
    }
}

/* Mobile Register Button */
.module_mini_eb50 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .module_mini_eb50 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.table-609a {
    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;
}

.table-609a::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 */
.dim_62c2 {
    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) {
    .dim_62c2 {
        display: none;
    }
}

.dim_62c2 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dim_62c2.fn-active-d521 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dim_62c2.fn-active-d521 span:nth-child(2) {
    opacity: 0;
}

.dim_62c2.fn-active-d521 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.pink_0a85 {
    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;
}

.pink_0a85.fn-active-d521 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.fluid-3463 {
    overflow: hidden;
}

.texture-8256 {
    list-style: none;
    padding: 0.75rem 0;
}

.info_467f {
    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;
}

.info_467f:hover,
.info_467f.fn-active-d521 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.info_467f.wide-1add {
    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;
}

.info_467f.wide-1add::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 */
.pattern-basic-36ae {
    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;
}

.white-5424 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.white-5424:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.hard-207b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hard-207b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.yellow_c811 {
    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;
}

.yellow_c811:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.bottom_304f {
    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;
}

.highlight-lite-0e05 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.highlight-lite-0e05:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.frame_3059 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.frame_3059:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.simple_5b17 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.simple_5b17: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);
}

.bronze_edf6 {
    font-size: 1em;
    font-weight: 700;
}

.outline_red_94e0 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.menu-7b31 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.menu-7b31::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;
}

.panel_stale_5ed9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .panel_stale_5ed9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.button_blue_7d62 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.footer-hard-8123 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tag-large-6d49 {
    margin-bottom: 2rem;
}

.item_tall_979c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .item_tall_979c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_last_d2ac {
    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);
}

.prev-8928 {
    font-size: 1.5rem;
}

.feature_c3de {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pressed_9fe3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame_d82f {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.frame_d82f:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.out-50db {
    text-align: center;
    margin-bottom: 3rem;
}

.media_787a {
    margin-bottom: 1rem;
}

.soft_7d53 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.accent-pro-6171 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .accent-pro-6171 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .accent-pro-6171.in-57bb {
        direction: rtl;
    }
    
    .accent-pro-6171.in-57bb > * {
        direction: ltr;
    }
}

.slider-d012 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.slider-d012:first-child {
    margin-top: 0;
}

.nav_blue_5e61 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.module-pressed-36fe {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.module-pressed-36fe:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.background_37ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_37ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_9281 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_hot_dd23 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shadow_f7a9 {
    list-style: none;
}

.shadow_f7a9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow_f7a9 li:last-child {
    border-bottom: none;
}

/* Games Features */
.table-hard-864a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.dynamic_5176 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.stale-43b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.bright-4960 {
    margin: 2rem 0;
}

.picture_lite_2bdc {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.active-e72e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.fixed_7be0 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.progress-5ff9 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.content_blue_789a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_blue_789a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-south-4b4b {
    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);
}

.content-south-4b4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status-0655 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fast_d9b7 {
    font-size: 1.5rem;
}

.feature_hovered_151b {
    color: var(--accent-color);
    margin: 0;
}

.thick_7b30 {
    list-style: none;
}

.thick_7b30 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thick_7b30 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.container-1db3 {
    margin: 2rem 0;
}

.north_aaba {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.box_5734 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .box_5734 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_413d {
    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);
}

.section-fe3c {
    font-size: 1.25rem;
}

.sort-060c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.surface_c1c6,
.medium_e543 {
    text-align: center;
    margin: 2rem 0;
}

.pattern-a992,
.upper-3d51 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.gallery_wide_ef03 {
    margin: 2rem 0;
    text-align: center;
}

.column-left-bbc3 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.column-left-bbc3::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;
}

.link-63cb {
    position: relative;
    z-index: 1;
}

.motion-e0b0 {
    margin-bottom: 1rem;
}

.hidden-82f8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form_advanced_9daa {
    margin-bottom: 3rem;
}

.row-6c02 {
    margin-top: 3rem;
}

.status_ff9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .status_ff9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_ff9b .secondary_last_d2ac {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button-wood-ec3c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fixed-364c {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.main-56bf {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.overlay_43d3 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .overlay_43d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_43d3 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.logo-active-3ad8 {
    margin-bottom: 1rem;
}

.item-top-f418 img {
    margin-bottom: 1rem;
}

.fluid-04c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-dim-71b6 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.form_9623 {
    list-style: none;
}

.form_9623 li {
    margin-bottom: 0.5rem;
}

.form_9623 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.form_9623 a:hover {
    color: var(--accent-color);
}

.video-f494 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-focused-5999 {
    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);
}

.article-focused-5999:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.search_lite_27cd {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.search_lite_27cd p {
    margin-bottom: 0.25rem;
}

.right-9cca {
    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) {
    .right-9cca {
        flex-direction: row;
    }
}

.alert_adfd {
    text-align: center;
}

@media (min-width: 768px) {
    .alert_adfd {
        text-align: left;
    }
}

.alert_adfd p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hover-fast-a989 {
    font-size: 0.75rem !important;
}

.thick_99bb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notification_63df {
    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);
    }
}

.picture_steel_08fe {
    animation: fadeInUp 0.6s ease-out;
}

.footer_iron_0e17 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tabs-5220 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-5220 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.smooth_59fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth_59fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange_e16e {
    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);
}

.orange_e16e .stale-43b4 {
    font-size: 1.25rem;
}

.orange_e16e .thick-de1b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.banner_hovered_d481 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_hovered_d481 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_1033 {
    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);
}

.last_1033:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-3601 {
    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);
}

.in-c722 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image-93e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_glass_b14f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-right-7a88 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-right-7a88 .block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-right-7a88 .message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.short-070b {
    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_0384 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input_0384 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input_0384 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.layout_right_5ddc {
    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);
}

.accordion-dirty-7af9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fixed_198f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fixed_198f label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fixed_198f 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);
}

.fixed_198f input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fixed_198f input::placeholder {
    color: var(--text-muted);
}

.menu_solid_ee02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-dim-2894 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.panel-dim-2894 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.article_hard_37f6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.article_hard_37f6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.box_5734 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_5734 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_413d {
    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);
}

.input_413d .section-fe3c {
    font-size: 1.25rem;
}

.input_413d .sort-060c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.hover_warm_022d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-e1d0 {
    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);
}

.progress-e1d0 .stale-43b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-e1d0 .block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress-e1d0 .message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-1ef6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_center_5d89 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_center_5d89 .heading_c635 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_center_5d89 .background-be06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_53ee {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_33ff {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze_33ff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-out-87a6 {
    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);
}

.box-out-87a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-ba39 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.active-7b7d {
    flex: 1;
}

.lower-0a75 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status_541c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.soft_9f82 {
    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);
}

.soft_9f82:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.right-a36a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-a36a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale_f856 {
    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);
}

.stale_f856:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev-bfc2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag_810a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.icon-advanced-d258 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.current-b230 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.info_3599 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-upper-b4fc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-18cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gold-18cb .south-b7ae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold-18cb .glass_4ba6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-stale-1e7e {
    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);
}

.motion_d56d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_fbcf {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_fbcf .stale-43b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_fbcf .block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_fbcf .message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.short-337e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-337e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_effd {
    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);
}

.grid_effd:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.menu_fast_207e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_fast_207e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-157c {
    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);
}

.progress-157c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_a39e {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_02e2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active-e72e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.detail-advanced-0662 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.tall_3d24 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-over-d4ae {
    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);
}

.wrapper-over-d4ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-slow-642a {
    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);
}

.grid_46aa {
    flex: 1;
}

.alert_rough_1ac9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.pagination-ed99 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.badge_rough_cfb8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_old_f471 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_7d19 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_7d19 .heading_c635 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_7d19 .background-be06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium_e543 {
    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);
}

.tabs-00ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-00ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.mini_2b90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini_2b90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black_fbca {
    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);
}

.black_fbca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_0530 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-hovered-9455 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.next-bb9c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.button_small_2b77 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-west-c3aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-down-8fcd {
    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);
}

.text-a552 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_0967 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-db66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_d56d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_fbcf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.shade_fbcf .block_b828 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_fbcf .message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-next-4b47 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.disabled_01b3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_01b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_01b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-fd19 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop-fd19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-5cb6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_f3e0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.medium-f9c6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.caption_99e0 {
    padding: 1.5rem;
}

.fresh_fc2a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.huge-c14e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huge-c14e 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;
}

.huge-c14e li:last-child {
    border-bottom: none;
}

.huge-c14e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.input-soft-05ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-soft-05ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-down-ee13 {
    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);
}

.avatar-down-ee13:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-south-e306 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture-purple-d5ed {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gas-3555 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.badge-up-bd8f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tertiary-abaa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected-451c {
    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);
}

.focus-7d90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-458e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_2199 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-upper-245c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient_4907 {
    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);
}

.outline-04f6 {
    text-align: center;
}

.static_724b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-plasma-4985 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.form_db22 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom-fccf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-fccf .block_b828 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bottom-fccf .message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-dark-47ac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message-dark-47ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message-dark-47ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-c40c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.detail-c40c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel-0b75 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.white-1542 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.block_b828 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.smooth_5c64 {
    padding: 1.5rem;
}

.message_pro_71dc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dirty-b2cb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty-b2cb 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;
}

.dirty-b2cb li:last-child {
    border-bottom: none;
}

.dirty-b2cb li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.accent-huge-b81c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.widget_2659 {
    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);
}

.widget_2659:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-963a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple_09a4 {
    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);
}

.frame-3601 {
    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;
}

.in-c722 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image-93e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_f745 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_warm_e55a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_wide_27d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-2dca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overlay-dynamic-2d1c {
    display: flex;
    gap: 1rem;
}

.overlay-dynamic-2d1c .pagination_cold_b6ce {
    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;
}

.left_715f {
    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);
}

.footer_static_0f74 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.short_fdf7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short_fdf7 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;
}

.short_fdf7 li:last-child {
    border-bottom: none;
}

.short_fdf7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.right_27e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right_27e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right_27e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-pressed-b8b1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pagination-pressed-b8b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-98e5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.action_54a0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.south-b7ae {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hero-d962 {
    font-size: 1rem;
}

.pressed-57d0 {
    padding: 1.5rem;
}

.glass_4ba6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.nav-a120 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.nav-a120 .outline-04f6 {
    text-align: center;
}

.nav-a120 .image-plasma-4985 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.nav-a120 .highlight-ca80 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.section_black_b844 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.section_black_b844:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.narrow-0a3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-0a3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-5a87 {
    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);
}

.table-5a87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-lite-a9db {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-0762 {
    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);
}

.tertiary_e365 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_a526 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-dim-f60d {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_focused_7e17 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article-58eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_red_fd1b {
    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);
}

.video-brown-8156 {
    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;
}

.video-brown-8156.panel_5ce5 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.video-brown-8156.media-e125 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.video-brown-8156.avatar_5a25 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.video-brown-8156.tertiary_68fd {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.video-brown-8156.hover-clean-b160 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.progress-5dd9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold_b2f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_a653 {
    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);
}

.text_smooth_ada3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focused-1ef6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-1ef6 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;
}

.focused-1ef6 li:last-child {
    border-bottom: none;
}

.focused-1ef6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.sort-full-0b63 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort-full-0b63 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort-full-0b63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_c93b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tall_c93b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_c93b.module_e2b1 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tall_c93b.module_e2b1 {
        grid-column: span 3;
    }
}

.breadcrumb_9625 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tall_c93b.module_e2b1 .breadcrumb_9625 {
    background: rgba(6, 182, 212, 0.1);
}

.bottom_186a {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-cb0d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tall_c93b.module_e2b1 .section-cb0d {
    color: var(--info-color);
}

.sidebar_center_ff63 {
    padding: 1.5rem;
    text-align: center;
}

.down-843a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tall_c93b.module_e2b1 .down-843a {
    color: var(--info-color);
}

.message-basic-6b26 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.image_tiny_7aac {
    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 */
.list_74f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_74f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_gold_7e60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_gold_7e60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-orange-71b3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-e1d0 {
    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);
}

.section-fe3c {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-last-9e4f {
    flex: 1;
}

.north_aaba {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-f050 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-green-2d33 {
    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);
}

.badge-17a8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thumbnail_17c0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notification_63df {
    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);
}

.label_923d {
  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);
}

.label_923d .outline-04f6 {
    text-align: center;
}

.label_923d .static_724b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.label_923d .image-plasma-4985 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag_c8a2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_lower_5208 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_3847 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focused_72a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-c68c {
    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);
}

.east_efd7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-6fd3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_bc65 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_bc65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_bc65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood-4f6c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood-4f6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_4ba0 {
    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);
}

.next-97af {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs-east-c128 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.modal_43b9 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal_43b9.summary_fluid_fd86 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.modal_43b9.logo_lite_df92 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.modal_43b9.component-brown-9fcd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.complex_9743 {
    padding: 1.5rem;
    text-align: center;
}

.south_caab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_complex_1eb4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.widget_complex_1eb4 .liquid_50ab {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.under_4822 {
    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);
}

.under_4822:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.summary_f645 {
  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);
}

.border-82fd {
    text-align: center;
}

.border-82fd .static_724b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.border-82fd .image-plasma-4985 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.background-bright-f754 { text-align: center; }
.tag-b680 { text-align: left; }
.new-ce3d { text-align: right; }

.card_right_7490 { margin-bottom: 0; }
.avatar-96f0 { margin-bottom: 0.5rem; }
.rough-a619 { margin-bottom: 1rem; }
.shade-soft-bb5c { margin-bottom: 1.5rem; }
.liquid-9ab9 { margin-bottom: 2rem; }

.solid-dfc3 { margin-top: 0; }
.west-5b9c { margin-top: 0.5rem; }
.input_fluid_2ef8 { margin-top: 1rem; }
.hover_north_c39b { margin-top: 1.5rem; }
.fluid_3888 { margin-top: 2rem; }

.fn-hidden-d521 { display: none; }
.fn-visible-d521 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .menu-7b31 {
        padding: 6rem 0 3rem;
    }
    
    .panel_stale_5ed9 {
        text-align: center;
    }
    
    .accent-pro-6171 {
        text-align: center;
    }
    
    .item_tall_979c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .overlay_huge_77d6,
    .pink_0a85,
    .column-left-bbc3,
    .main-56bf {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .menu-7b31 {
        background: none;
    }
}

/* Providers Section */
.mini-4044 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-warm-5a82 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-warm-5a82 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row-warm-5a82 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north_2a4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.north_2a4f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fast-d2d5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.middle-da94 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cool_98b2 {
    list-style: none;
    padding: 0;
}

.cool_98b2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.cool_98b2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wide-3651 {
    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);
}

.wide-3651 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.link-static-3ec6 {
    padding: var(--section-padding);
}

.motion_a9fc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_a9fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-5752 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface-5752:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dim-d551 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.black-0cb2 {
    display: flex;
    flex-direction: column;
}

.easy-dbd8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.focused_ba93 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accordion-f3eb {
    color: var(--accent-color);
}

.wood_7fd2 {
    font-size: 1.25rem;
}

.photo_fixed_dd0e {
    margin-bottom: 1rem;
}

.photo_fixed_dd0e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.warm_033d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.box_outer_5ece {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.outline-04f6 {
    text-align: center;
}

.static_724b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-plasma-4985 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.simple-202e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_plasma_8300 {
    margin: 2rem 0;
}

.status-first-e527 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.status-first-e527 .stale-43b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_hard_f73f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.detail_ef3c {
    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;
}

.detail_ef3c:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-2d16 {
    font-size: 2rem;
}

.module_up_aa63 {
    display: flex;
    flex-direction: column;
}

.primary-6546 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.wide_e2bd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.background_d969 {
    padding: var(--section-padding);
}

.alert-05a8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .alert-05a8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert-05a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-113e {
    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);
}

.heading-113e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading-113e .static_724b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.heading-113e .image-plasma-4985 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.heading-113e .down-698a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.picture-6c3d {
    margin-top: 4rem;
}

.filter_c03c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.notification-purple-7498 {
    overflow-x: auto;
}

.heading-cb3c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.heading-cb3c thead {
    background: var(--accent-color);
}

.heading-cb3c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.heading-cb3c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-cb3c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.heading-cb3c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.background-lite-e1d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-complex-5df5 {
    max-width: 900px;
    margin: 0 auto;
}

.item_purple_453e {
    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);
}

.item_purple_453e:hover {
    border-color: var(--accent-color);
}

.grid-aae7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.grid-aae7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.summary_bc61 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.item_purple_453e.fn-active-d521 .summary_bc61 {
    transform: rotate(45deg);
}

.header_simple_fe84 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.item_purple_453e.fn-active-d521 .header_simple_fe84 {
    max-height: 1000px;
}

.header_simple_fe84 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.status-red-2e60 {
    padding: var(--section-padding);
}

.input_0384 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.gallery_under_28ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-south-3803 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-south-3803 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside-75fb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_fd83 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accordion-4215 {
    font-size: 2rem;
}

.accent-e09c {
    color: var(--text-white);
    margin: 0;
}

.tabs_left_0764 {
    list-style: none;
    padding: 0;
}

.tabs_left_0764 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_left_0764 li:last-child {
    border-bottom: none;
}

.hovered-444d {
    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);
}

.hovered-444d p {
    color: var(--success-color);
    margin: 0;
}

.east-477c {
    margin-top: 3rem;
}

.footer_static_0f74 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input-fc1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input-fc1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort-stone-5984 {
    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);
}

.photo_motion_6f0b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sort-stone-5984 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.block-b618 {
    padding: var(--section-padding);
}

.overlay-c757 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-c757 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown-d8ef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown-d8ef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.selected-2afc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brown-0b8b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.slow_d51d {
    flex: 1;
}

.title_tiny_0e51 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.breadcrumb_e5c8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.link_aafe {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner-e049 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-e049:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hovered-744a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.secondary_3feb {
    padding: var(--section-padding);
}

.white_cf2a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.modal-7f86 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-7f86 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-36f2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-33bb, .fixed_62ad, .tabs_ec5b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tabs_ec5b {
    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 */
.notice_top_c6fd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_narrow_6de3 {
    margin: 2rem 0;
}

.stone-e9cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_wide_d0ce {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.in-ad5c {
    list-style: none;
    padding: 0;
}

.in-ad5c 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;
}

.in-ad5c li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.in-ad5c li:last-child {
    border-bottom: none;
}

.title_east_9368 {
    text-align: center;
    margin-top: 2rem;
}

.photo_113c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.video_white_21f9 {
    padding: var(--section-padding);
}

.orange_9ede {
    margin: 2rem 0;
}

.avatar_hard_79c4 {
    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) {
    .avatar_hard_79c4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.avatar_hard_79c4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message_fast_6c8c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.lower-fd07 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.bottom_f4d2 {
    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;
}

.slider_6dd0 {
    flex: 1;
}

.module_3c67 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.purple_1c5d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.white-4575 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.lite-93d4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .lite-93d4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.element-advanced-b6b0 {
    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);
}

.element-advanced-b6b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-advanced-b6b0 .static_724b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-advanced-b6b0 .image-plasma-4985 {
    color: var(--text-gray);
    font-size: 1rem;
}

.grid_ba4c {
    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);
}

.box_eb27 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.box_eb27 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.banner-dc03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .banner-dc03 {
        grid-template-columns: 1fr 1fr;
    }
}

.video-bottom-4dce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_5488 {
    margin-bottom: 1.5rem;
}

.wood_5488 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wood_5488 input,
.wood_5488 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;
}

.wood_5488 input:focus,
.wood_5488 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.element-center-569b {
    width: 100%;
    margin-top: 1rem;
}

.title_over_cb73 {
    display: flex;
    align-items: center;
}

.heading_1f23 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.texture-9040 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.outline_center_9179 {
    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;
}

.mask_simple_f394 {
    color: var(--text-gray);
}

.mask-iron-e7dc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.active-west-f2e4 {
    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);
}

.active-west-f2e4 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.list-7f5c {
    margin-top: 3rem;
}

.caption-huge-c40d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.summary-5a76 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_c96b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.badge-ea61 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-ea61:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.current-c0ad {
    padding: var(--section-padding);
}

.outer_c0b2 {
    margin: 2rem 0;
}

.paragraph-6c62 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.link-iron-fe3a {
    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;
}

.link-iron-fe3a:hover, .link-iron-fe3a.fn-active-d521 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.overlay_4d37 {
    display: none;
}

.overlay_4d37.fn-active-d521 {
    display: block;
}

.secondary_42ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_2aaa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.detail-8921 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.detail-8921 ul {
    list-style: none;
    padding: 0;
}

.detail-8921 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.detail-8921 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.row-8f05 {
    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 */
.paragraph-focused-8128 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_b5dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean-6581 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.medium_249a {
    color: var(--accent-color);
    margin: 0;
}

.grid_89c2 {
    display: flex;
    gap: 1.5rem;
}

.shade-eb48 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-hard-2db8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gold-d201 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.gold-d201.dropdown-c3db {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.gold-d201.widget_85a0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gold-d201.green-eaed {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.menu-complex-5a0f {
    margin-top: 2rem;
}

.layout_de97 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider_wood_5eb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .slider_wood_5eb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_7030 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.focus-caf5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hidden_d7fe {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.article_hard_b8d3 {
    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 */
.paragraph_glass_6af7 {
    padding: var(--section-padding);
}

.list-1f45 {
    margin: 2rem 0;
}

.dynamic-1ffb {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.banner-green-d080 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.yellow-b6f0 {
    list-style: none;
    padding: 0;
}

.yellow-b6f0 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;
}

.yellow-b6f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.yellow-b6f0 li:last-child {
    border-bottom: none;
}

.shade-right-7d76 {
    margin: 2rem 0;
}

.stale_6c86 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paper-d2ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paper-d2ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.old-52fd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_lite_0492 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.soft_c0ef {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.inner-5ac4 {
    margin-top: 2rem;
}

.lower-0a75 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.section_59ea {
    list-style: none;
    padding: 0;
}

.tag-8818 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tag-8818 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tag-8818 a:hover {
    text-decoration: underline;
}

.status_9e61 {
    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 */
.current_1194 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-6e5d {
    margin: 2rem 0;
}

.pressed-a12c {
    margin-bottom: 3rem;
}

.pressed-a12c .text_wide_d0ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.picture-de48 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.media_451c {
    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);
}

.media_451c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.icon_9209 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .icon_9209 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current_215a {
    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 */
.outline-65a4 {
    padding: var(--section-padding);
}

.list-purple-8749 {
    margin: 2rem 0;
}

.column-8ed0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dim-6b4f {
    overflow-x: auto;
    margin: 2rem 0;
}

.in-fce3 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.wrapper_96ef {
    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;
}

.element_upper_116d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.dynamic_b592 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .dynamic_b592 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_781f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_781f .stale-43b4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_781f .block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_fixed_95d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.tertiary_4111 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_north_c38d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_north_c38d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-iron-249f {
    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;
}

.widget-iron-249f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.video_huge_a1d9 {
    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);
}

.thick-c774 {
    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;
}

.paper-df6e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade-full-b250 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.nav-action-7320 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.black_3cbd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-huge-fe50 {
    color: var(--text-white);
    font-weight: 600;
}

.thick_a88d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border_fresh_65b3 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border_fresh_65b3 .pagination_cold_b6ce {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.selected_617b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .selected_617b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-8d2b {
    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);
}

.picture-8d2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture-8d2b .static_724b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture-8d2b .image-plasma-4985 {
    color: var(--text-gray);
    font-size: 1rem;
}

.nav_next_041f {
    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);
}

.filter_6deb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.filter_6deb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.detail-west-c3aa {
    margin: 2rem 0;
}

.carousel-down-8fcd {
    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);
}

.carousel-down-8fcd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.text-a552 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link_fixed_9d51 {
    flex: 1;
}

.outer_0967 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-db66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.motion_d56d {
    margin: 2rem 0;
}

.shade_fbcf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_fbcf .block_b828 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.shade_fbcf .message_pro_71dc {
    color: var(--text-gray);
    margin: 0;
}

.summary-next-4b47 {
    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);
}

.summary-next-4b47 .pattern-a992 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.frame_fixed_95d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.pagination-slow-642a {
    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;
}

.grid_46aa {
    flex: 1;
}

.pagination-ed99 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.badge_rough_cfb8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.frame-3601 {
    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;
}

.label-lower-9942 {
    flex: 1;
}

.in-c722 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.image-93e9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.nav_wide_27d7 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.short-2dca {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.overlay-dynamic-2d1c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.overlay-dynamic-2d1c .pagination_cold_b6ce {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.left_715f {
    margin-top: 2rem;
}

.left_715f .footer_static_0f74 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pagination_full_8367 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_4907 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gradient_4907 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_4907 .outline-04f6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_db22 {
    margin: 2rem 0;
}

.bottom-fccf {
    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 */
.shade_blue_a472 {
    padding: var(--section-padding);
}

.smooth_5c64 {
    margin-top: 1rem;
}

.dirty-b2cb {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.dirty-b2cb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.dirty-b2cb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.backdrop_thick_0e0d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-stone-0f02 {
    margin: 2rem 0;
}

.search-fresh-23fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.slider_2e75 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.red_877c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.column-ebc8 {
    margin: 2rem 0;
}

.widget-mini-c37d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.widget-mini-c37d .text_wide_d0ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert-0488 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert-0488 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup_inner_5dc7 {
    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);
}

.module_current_21a1 {
    color: var(--text-white);
    font-weight: 600;
}

.focus-wide-380a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.pressed_0c07 {
    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);
}

.pressed_0c07 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.bottom-a31d {
    padding: var(--section-padding);
}

.middle-259a {
    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;
}

.middle-259a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.green_38c3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green_38c3 .photo_motion_6f0b {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_38c3 .under_7861 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content_lite_13f2 {
    flex: 1;
}

.article_medium_ca8c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.picture_pressed_9047 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture_pressed_9047 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.picture_pressed_9047 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.brown-63ab {
    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);
}

.brown-63ab p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown-63ab strong {
    color: var(--warning-color);
}

/* Slots Section */
.button-top-0f81 {
    padding: var(--section-padding);
}

.info_3599 {
    margin: 2rem 0;
}

/* Table Games Section */
.iron-2923 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-upper-b4fc {
    margin: 2rem 0;
}

.gold-18cb {
    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);
}

.gold-18cb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gold-18cb .south-b7ae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold-18cb .glass_4ba6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.info-stale-1e7e {
    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);
}

.info-stale-1e7e .pattern-a992 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.section-d1ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-e55c {
    margin: 2rem 0;
}

.east_b337 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-d275 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_fc67 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-de62 {
    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);
}

.form-de62:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.form-de62.fn-active-d521 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-e3a6 {
    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);
}

.image-over-bbca {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image-over-bbca strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.link-4e97 {
    padding: var(--section-padding);
}

.upper_3d7b {
    margin: 2rem 0;
}

.new_aa36 {
    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);
}

.new_aa36:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .new_aa36 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.chip_8f6e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tertiary-full-32fe {
    flex: 1;
}

.icon-d88b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.frame-up-dec8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.red_6e51 {
    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;
}

.accordion-motion-1c5a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.small_0239 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.icon-e759 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video-focused-f0f5 {
    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;
}

.video-focused-f0f5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.carousel-hovered-abc4 {
    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);
}

.footer-118f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-118f strong {
    color: var(--accent-color);
}

/* New Games Section */
.thumbnail_dd8a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_eecc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notice_eecc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice_eecc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark_feee {
    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;
}

.dark_feee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal-stale-dead {
    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;
}

.menu_e957 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.focused-4a58 {
    font-size: 2rem;
}

.banner_2dbe {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.thumbnail_d8d0 {
    flex: 1;
}

.description_4cd9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.sidebar_cold_b667 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.advanced_55d4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal_smooth_9ccf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.media_upper_3959 {
    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;
}

.sidebar-down-176c {
    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;
}

.sidebar-down-176c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.over_ea3c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_advanced_baf8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade_b3db {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .shade_b3db {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_brown_18a5 {
    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);
}

.notification-6bac {
    color: var(--text-white);
    font-weight: 600;
}

.center-1454 {
    color: var(--accent-color);
    font-weight: 600;
}

.complex-7116 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.complex-7116 strong {
    color: var(--accent-color);
}

/* Security Section */
.inner-8055 {
    padding: var(--section-padding);
}

/* Benefits Section */
.photo_eb98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.full-d142 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.overlay_89e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_left_0a11 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.message_1a05 {
    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) {
    .message_1a05 {
        flex-direction: column;
        gap: 1rem;
    }
}

.message_1a05:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_1a05 .frame-3601 {
    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;
}

.message_1a05 .label-lower-9942 {
    flex: 1;
}

.message_1a05 .in-c722 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.message_1a05 .image-93e9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.black_73cf {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_73cf .north_aaba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_73cf .hover_warm_022d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.black_73cf .hover_warm_022d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.black_73cf .hover_warm_022d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.right-aea5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.pattern_green_caba {
    padding: var(--section-padding);
}

.card-smooth-ffd7 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card-smooth-ffd7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-ae97 {
    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);
}

.east-ae97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.east-ae97 .section-inner-c70d {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-ae97 .new-fe11 {
    flex: 1;
}

.east-ae97 .heading_c635 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.east-ae97 .title_603e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.motion-b1a0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-b1a0 .slow-55d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion-b1a0 .stale-f554 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.motion-b1a0 .stale-f554 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);
}

.motion-b1a0 .stale-f554 li:last-child {
    border-bottom: none;
}

.motion-b1a0 .stale-f554 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;
}

.motion-b1a0 .stale-f554 li strong {
    color: var(--text-white);
}

.primary-dim-258f {
    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);
}

.primary-dim-258f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary-dim-258f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.green_65bd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_b3f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .link_b3f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-bf1b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.frame-bf1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay-e523 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel_small_e7e1 {
    font-size: 2rem;
}

.wide-f041 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.panel-7812 {
    flex: 1;
}

.widget_a43c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_a43c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.widget_a43c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.mask_6dbf {
    margin-top: 3rem;
}

.dynamic-1ffb {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.banner-green-d080 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow-b6f0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow-b6f0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.yellow-b6f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.yellow-b6f0 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.image_436a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_bottom_b768 {
    margin: 2rem 0;
}

.row-bottom-6ac9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.row-bottom-6ac9 .text_wide_d0ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-a287 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-a287 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_1256 {
    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);
}

.component_1256:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.title_action_7d08 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hidden-6cfa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.heading-easy-f084 {
    padding: var(--section-padding);
}

.banner-a683 {
    margin: 2rem 0;
}

.element-green-3af6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .element-green-3af6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-green-3af6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.south_786c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.south_786c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dark_ce06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.new-1810 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.frame-right-d2d1 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.frame-right-d2d1.pagination-7771 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.button_52d4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.search-ecb9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.white-669f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.purple-feca {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown_3147 {
    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);
}

.brown_3147 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown_3147 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.highlight_green_60ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_e1cb {
    margin: 2rem 0;
}

.paragraph-short-8556 {
    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) {
    .paragraph-short-8556 {
        flex-direction: column;
        gap: 1rem;
    }
}

.paragraph-short-8556:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph-short-8556::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);
}

.huge-bfbf {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.dynamic-98ca {
    flex: 1;
}

.thumbnail_large_199b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer_3463 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_3463 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-19c0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-e9c2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green_ede7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .green_ede7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_7ff7 {
    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);
}

.icon-abd4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smooth_e6f4 {
    flex: 1;
}

.tag_short_5859 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.pattern-ff15 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hover_rough_fa5c {
    margin-top: 2rem;
    text-align: center;
}

.center_faa0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center_faa0 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.narrow-0a3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-0a3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-5a87 {
    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);
}

.table-5a87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table-5a87 .aside-south-e306 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-5a87 .picture-purple-d5ed {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.table-5a87 .gas-3555 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.table-5a87 .badge-up-bd8f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.surface_stone_aff7 {
    padding: var(--section-padding);
}

.main-0762 .info-a91a {
    flex: 1;
}

/* Promo Calendar Section */
.smooth-6649 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-hot-efb2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-hot-efb2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-7c45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-6b04 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.new_feec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hidden-1d67 {
    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);
}

.surface-0e49 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.popup-black-eb74 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.banner-9305 {
    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);
}

.banner-9305 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner-9305 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.dirty-c02c {
    padding: var(--section-padding);
}

.nav-5ee9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav-5ee9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outer_1d23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-a7d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-98ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-98ac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.over-3b35 {
    margin-top: 3rem;
}

.over-3b35 .dynamic-1ffb {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.over-3b35 .banner-green-d080 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.over-3b35 .yellow-b6f0 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.over-3b35 .yellow-b6f0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.over-3b35 .yellow-b6f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.over-3b35 .yellow-b6f0 li strong {
    color: var(--warning-color);
}

.yellow-d12b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow-d12b strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.banner_fluid_810e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_95b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_95b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-8a2d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-8a2d .text_wide_d0ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.mask_basic_ed73 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card_bce4 {
    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);
}

.card_bce4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.background_40e5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-purple-6a0d {
    flex: 1;
}

.section-4ab8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.item_east_9d76 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pink-7dd0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.texture_black_af0a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.card_rough_1bb6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .card_rough_1bb6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-north-84e8 {
    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);
}

.disabled-north-84e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout_ffcc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider_510e {
    color: var(--text-gray);
    font-size: 1rem;
}

.box_eb27 {
    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);
}

.primary_dark_f019 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.primary_dark_f019 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.surface-liquid-d64e { 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; }
.frame_d82f, .module-pressed-36fe { max-width:100%; height:auto; }

.pattern-basic-36ae, .yellow_c811, .bottom_304f { white-space:normal; }

.panel_stale_5ed9,
.accent-pro-6171,
.list_74f3,
.narrow-0a3b,
.motion_d56d,
.gradient_bc65 {
  flex-wrap:wrap;
}

[class*="grid"],
.card_rough_1bb6,
.element-green-3af6,
.status_ff9b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.menu-7b31 img,
.accent-pro-6171 img,
.pressed_9fe3 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.button_blue_7d62, .footer-hard-8123,
.media_787a, .soft_7d53 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.notification-purple-7498 { width:100%; overflow-x:auto; }
.notification-purple-7498 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.row-warm-5a82 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .row-warm-5a82 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.north_2a4f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.alert-05a8,
.header_568b,
.article-rough-3368,
.frame-liquid-e7c3,
.lite-93d4,
.card_rough_1bb6,
.element-green-3af6,
.status_ff9b,
.summary_f645,
.upper_3d7b,
.row-warm-5a82 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .alert-05a8,
  .header_568b,
  .article-rough-3368,
  .frame-liquid-e7c3,
  .lite-93d4,
  .card_rough_1bb6,
  .element-green-3af6,
  .status_ff9b,
  .summary_f645,
  .upper_3d7b,
  .row-warm-5a82 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.heading-113e,
.element-advanced-b6b0,
.disabled-north-84e8,
.secondary_last_d2ac,
.south_786c,
.border-82fd,
.new_aa36,
.north_2a4f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.easy_548b,
.filter-over-2208,
.over-0238 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.easy_548b > *,
.filter-over-2208 > *,
.over-0238 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 701d */
.shadow-element-q2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
