/* {$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;
}

.caption_yellow_b058 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.alert-fresh-b402 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .alert-fresh-b402 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .alert-fresh-b402 {
        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 */
.fixed_2df7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav-complex-30e2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .nav-complex-30e2 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .primary_static_6f99 {
        grid-column: 1;
    }
    
    .dim-dbf0 {
        grid-column: 2;
    }
    
    .down_0eed {
        grid-column: 3;
    }
}

.primary_static_6f99 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.primary_static_6f99:hover img {
    transform: scale(1.05);
}

/* Navigation */
.notice_last_0971 {
    display: none;
}

@media (min-width: 1024px) {
    .notice_last_0971 {
        display: block;
    }
}

/* Grouped Navigation */
.column_472b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.chip-82f8 {
    position: relative;
}

.backdrop-yellow-6ad0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.chip-82f8 .rough_700d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.rough_700d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.tag-in-edae {
    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;
}

.tag-in-edae:hover,
.tag-in-edae.fn-active-cbaa {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.video_purple_d8ac {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .video_purple_d8ac {
        display: flex;
    }
}

/* Mobile Register Button */
.dim-dbf0 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .dim-dbf0 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.simple_14b2 {
    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;
}

.simple_14b2::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 */
.down_0eed {
    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) {
    .down_0eed {
        display: none;
    }
}

.down_0eed span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.down_0eed.fn-active-cbaa span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.down_0eed.fn-active-cbaa span:nth-child(2) {
    opacity: 0;
}

.down_0eed.fn-active-cbaa span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.solid-63ee {
    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;
}

.solid-63ee.fn-active-cbaa {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.list-red-3c38 {
    overflow: hidden;
}

.element-37b2 {
    list-style: none;
    padding: 0.75rem 0;
}

.primary-top-8d8f {
    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;
}

.primary-top-8d8f:hover,
.primary-top-8d8f.fn-active-cbaa {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.primary-top-8d8f.chip-c8c4 {
    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;
}

.primary-top-8d8f.chip-c8c4::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 */
.accordion-01b7 {
    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;
}

.narrow-aedd {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.narrow-aedd:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.full-4c43 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.full-4c43:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.list-c627 {
    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;
}

.list-c627:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.tertiary_6f76 {
    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;
}

.column-stale-777f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.column-stale-777f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-5ca0 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-5ca0:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.mask-north-fc10 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.mask-north-fc10: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);
}

.media-a93c {
    font-size: 1em;
    font-weight: 700;
}

.breadcrumb_full_8ca4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tabs_9a09 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tabs_9a09::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;
}

.background_3519 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .background_3519 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.column_bf9a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.in-7ec0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shadow_b0e0 {
    margin-bottom: 2rem;
}

.preview_soft_7d1a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .preview_soft_7d1a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_bc4a {
    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);
}

.progress-c4a9 {
    font-size: 1.5rem;
}

.surface_active_fa2f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.right-3661 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-6de6 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.item-6de6:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.thick_16b9 {
    text-align: center;
    margin-bottom: 3rem;
}

.column_eb78 {
    margin-bottom: 1rem;
}

.media-dbbd {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.title-3f6c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .title-3f6c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .title-3f6c.background-7176 {
        direction: rtl;
    }
    
    .title-3f6c.background-7176 > * {
        direction: ltr;
    }
}

.link-90c6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.link-90c6:first-child {
    margin-top: 0;
}

.gradient-ceb4 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.paper-5d57 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.paper-5d57:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.aside_blue_5cb7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_blue_5cb7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_black_a51f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero-plasma-a538 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thumbnail-5695 {
    list-style: none;
}

.thumbnail-5695 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-5695 li:last-child {
    border-bottom: none;
}

/* Games Features */
.tooltip-3bb4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.link-upper-8ca8 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pro_323c {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.mini_9a8c {
    margin: 2rem 0;
}

.lower-155c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.fast-140f {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.menu_b548 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.title_c3d0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hot_2ebd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot_2ebd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-left-0211 {
    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);
}

.avatar-left-0211:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask-63e1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.button_lower_5bd6 {
    font-size: 1.5rem;
}

.bottom_ca0d {
    color: var(--accent-color);
    margin: 0;
}

.module-aaba {
    list-style: none;
}

.module-aaba li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.module-aaba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.input_hard_d092 {
    margin: 2rem 0;
}

.surface_4738 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.popup-cool-d307 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .popup-cool-d307 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-2494 {
    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);
}

.input-55c2 {
    font-size: 1.25rem;
}

.out_9632 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.banner-pink-52bb,
.button-a0a1 {
    text-align: center;
    margin: 2rem 0;
}

.component_fb4f,
.item_over_07ec {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.stone_0a6b {
    margin: 2rem 0;
    text-align: center;
}

.caption-silver-4669 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.caption-silver-4669::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;
}

.logo-5d05 {
    position: relative;
    z-index: 1;
}

.gold-91e0 {
    margin-bottom: 1rem;
}

.column_b233 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search_yellow_a072 {
    margin-bottom: 3rem;
}

.status_basic_97d3 {
    margin-top: 3rem;
}

.paper_58a5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .paper_58a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_58a5 .tag_bc4a {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button_static_ac36 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_8946 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.grid-8c51 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.static_5b0a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .static_5b0a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static_5b0a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.layout-c5d2 {
    margin-bottom: 1rem;
}

.image_iron_1d18 img {
    margin-bottom: 1rem;
}

.hover_bacc {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_e61f {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.solid_d553 {
    list-style: none;
}

.solid_d553 li {
    margin-bottom: 0.5rem;
}

.solid_d553 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.solid_d553 a:hover {
    color: var(--accent-color);
}

.box-pressed-bd0b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-in-7e0c {
    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);
}

.slider-in-7e0c:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.aside_722b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.aside_722b p {
    margin-bottom: 0.25rem;
}

.dirty-9e33 {
    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) {
    .dirty-9e33 {
        flex-direction: row;
    }
}

.row_hard_09f9 {
    text-align: center;
}

@media (min-width: 768px) {
    .row_hard_09f9 {
        text-align: left;
    }
}

.row_hard_09f9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget-da30 {
    font-size: 0.75rem !important;
}

.title-steel-55dc {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pattern_hard_9763 {
    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);
    }
}

.input-65dc {
    animation: fadeInUp 0.6s ease-out;
}

.text_lite_8d00 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.shade_53d3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_53d3 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.notice_pink_af9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_pink_af9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_wide_b0b6 {
    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);
}

.main_wide_b0b6 .pro_323c {
    font-size: 1.25rem;
}

.main_wide_b0b6 .slider_complex_75be {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.down-9c7c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .down-9c7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_orange_c6a2 {
    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);
}

.wrapper_orange_c6a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-129e {
    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);
}

.action_8ebb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.progress_under_ba87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_ce7a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-fresh-cbd5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-fresh-cbd5 .alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask-fresh-cbd5 .last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-next-d65c {
    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);
}

.full-9eb9 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.full-9eb9 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.full-9eb9 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.fast-9073 {
    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);
}

.aside-2c97 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon_c252 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.icon_c252 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.icon_c252 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);
}

.icon_c252 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.icon_c252 input::placeholder {
    color: var(--text-muted);
}

.container-orange-6253 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-26db {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.section-26db input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.texture_31be {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.texture_31be:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.popup-cool-d307 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-cool-d307 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-2494 {
    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);
}

.full-2494 .input-55c2 {
    font-size: 1.25rem;
}

.full-2494 .out_9632 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.button-bc20 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_9441 {
    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);
}

.slow_9441 .pro_323c {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow_9441 .alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slow_9441 .last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_7fdd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-ec39 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic-ec39 .secondary-west-d2c6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-ec39 .light_9390 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_orange_8627 {
    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);
}

.carousel_3979 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_3979 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under-fa49 {
    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);
}

.under-fa49:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left-b717 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.upper_6653 {
    flex: 1;
}

.bottom_bbeb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tall-f305 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.table-a35e {
    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);
}

.table-a35e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.last_02f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_02f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_top_10d1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_top_10d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-active-4264 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_c64e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layout-easy-37c2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article_hard_f022 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lite_51b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-huge-b758 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-outer-c9c6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.aside-outer-c9c6 .texture_tall_f45a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-outer-c9c6 .input-3a3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-last-ff8c {
    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);
}

.hard_fe53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-6740 {
    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);
}

.badge-6740 .pro_323c {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-6740 .alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge-6740 .last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_south_a01e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_south_a01e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_3788 {
    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);
}

.section_3788:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.preview_solid_106d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_solid_106d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower-f7b1 {
    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);
}

.lower-f7b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_under_f415 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-daa6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fast-140f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.video_432c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.info_prev_de66 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_green_7666 {
    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);
}

.highlight_green_7666:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-lite-0139 {
    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);
}

.frame-6184 {
    flex: 1;
}

.filter_3464 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.message-light-7126 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.action_2230 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-hard-e5e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny-6b2c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-6b2c .secondary-west-d2c6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny-6b2c .light_9390 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-a0a1 {
    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);
}

.steel-bd2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel-bd2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.panel_white_98c5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_white_98c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-0a83 {
    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);
}

.tiny-0a83:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_pressed_6f3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_east_82b3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-d005 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.white_1768 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focus_cdf7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_c790 {
    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);
}

.video_paper_c785 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up-ed7e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-65f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_fe53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-6740 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-6740 .alert-glass-7262 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.badge-6740 .last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_white_68af {
    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);
}

.popup-small-a845 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup-small-a845 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-small-a845 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-out-a09c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon-out-a09c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light_6297 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_16f2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.main_b748 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.table_6896 {
    padding: 1.5rem;
}

.text-8a91 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.table-fcbb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-fcbb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.table-fcbb li:last-child {
    border-bottom: none;
}

.table-fcbb li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.secondary-585d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-585d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_last_66f0 {
    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);
}

.preview_last_66f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_down_b735 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-afe8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.current_a2f2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.link-827f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_hard_5c78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-large-f632 {
    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);
}

.heading_new_123a {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-fde2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.rough_846a {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_8b41 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.badge_cool_c4d6 {
    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);
}

.background_tiny_abde {
    text-align: center;
}

.message-079a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-64a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_a282 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-huge-2d15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-huge-2d15 .alert-glass-7262 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-huge-2d15 .last_917d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-static-e54d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-static-e54d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-static-e54d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_8339 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_8339:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron-14b6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.message-fixed-fba9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.alert-glass-7262 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.upper-c736 {
    padding: 1.5rem;
}

.last_917d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary_west_a834 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary_west_a834 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;
}

.summary_west_a834 li:last-child {
    border-bottom: none;
}

.summary_west_a834 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.thick_87dc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pagination-wide-e761 {
    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);
}

.pagination-wide-e761:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-c8c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_c184 {
    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);
}

.disabled-129e {
    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;
}

.action_8ebb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_under_ba87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_98d7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west_8a3a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary_0418 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.logo-5e06 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bronze_ba13 {
    display: flex;
    gap: 1rem;
}

.bronze_ba13 .description-hot-a305 {
    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;
}

.tall_f12f {
    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);
}

.pattern-blue-9b38 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dropdown-41ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-41ce 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;
}

.dropdown-41ce li:last-child {
    border-bottom: none;
}

.dropdown-41ce li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.warm_4454 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .warm_4454 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm_4454 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-1b82 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.summary-1b82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-0613 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.message-pink-6015 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture_tall_f45a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.main_left_2c8a {
    font-size: 1rem;
}

.black_2b9a {
    padding: 1.5rem;
}

.input-3a3d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.status-gold-75b2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.status-gold-75b2 .background_tiny_abde {
    text-align: center;
}

.status-gold-75b2 .icon-64a4 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.status-gold-75b2 .grid_b619 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lite_ec9c {
    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);
}

.lite_ec9c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.input-solid-59f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-solid-59f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-735e {
    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);
}

.upper-735e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_steel_3924 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-c75a {
    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);
}

.gallery-1a98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_91fc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.orange-24a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_7964 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component-hard-5339 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-0f52 {
    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);
}

.detail-slow-fe99 {
    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;
}

.detail-slow-fe99.pink-d840 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.detail-slow-fe99.photo-55fa {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.detail-slow-fe99.container_purple_5570 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.detail-slow-fe99.table_cf10 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.detail-slow-fe99.light_f4a0 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.highlight-c54e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_small_b620 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_52db {
    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);
}

.primary_3d47 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade_7fdd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_7fdd 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;
}

.shade_7fdd li:last-child {
    border-bottom: none;
}

.shade_7fdd li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.tooltip-2197 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tooltip-2197 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip-2197 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-e339 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-e339:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-e339.cold_469f {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .message-e339.cold_469f {
        grid-column: span 3;
    }
}

.list_orange_709f {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.message-e339.cold_469f .list_orange_709f {
    background: rgba(6, 182, 212, 0.1);
}

.short_3324 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.south_64c3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.message-e339.cold_469f .south_64c3 {
    color: var(--info-color);
}

.hero_simple_22b1 {
    padding: 1.5rem;
    text-align: center;
}

.red-61c0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.message-e339.cold_469f .red-61c0 {
    color: var(--info-color);
}

.motion-4c86 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wood_a6ad {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

/* Platform Page Specific Styles */
.footer-active-66be {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-active-66be {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-552f {
    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);
}

.chip-552f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-d8aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_9441 {
    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);
}

.input-55c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.under-26b6 {
    flex: 1;
}

.surface_4738 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green-1489 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-eff8 {
    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);
}

.over-9806 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.block-under-c247 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pattern_hard_9763 {
    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);
}

.north_eb70 {
  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);
}

.north_eb70 .background_tiny_abde {
    text-align: center;
}

.north_eb70 .message-079a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.north_eb70 .icon-64a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification_f270 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-de0c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_6ad8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected_5973 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_bronze_0fd1 {
    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);
}

.new-d55b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay-bronze-5539 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_f37c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border_f37c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_f37c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-d6a6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel-d6a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-black-632a {
    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);
}

.hero-d571 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.complex-116e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.current_2b97 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.current_2b97.motion_5f40 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.current_2b97.photo-pressed-6c5b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.current_2b97.brown_dc06 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.motion-27f7 {
    padding: 1.5rem;
    text-align: center;
}

.focused_3f8f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption-4df6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.caption-4df6 .fast-0364 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.inner_305f {
    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);
}

.inner_305f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.widget_0145 {
  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);
}

.form_97fd {
    text-align: center;
}

.form_97fd .message-079a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.form_97fd .icon-64a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.article_590a { text-align: center; }
.light_f42f { text-align: left; }
.form-30f8 { text-align: right; }

.overlay-large-ad08 { margin-bottom: 0; }
.heading_586c { margin-bottom: 0.5rem; }
.left_7ec9 { margin-bottom: 1rem; }
.border-09df { margin-bottom: 1.5rem; }
.in_41c5 { margin-bottom: 2rem; }

.border-219a { margin-top: 0; }
.sidebar_pink_2d67 { margin-top: 0.5rem; }
.feature_14ff { margin-top: 1rem; }
.breadcrumb_4bd1 { margin-top: 1.5rem; }
.dropdown_1eda { margin-top: 2rem; }

.fn-hidden-cbaa { display: none; }
.fn-visible-cbaa { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tabs_9a09 {
        padding: 6rem 0 3rem;
    }
    
    .background_3519 {
        text-align: center;
    }
    
    .title-3f6c {
        text-align: center;
    }
    
    .preview_soft_7d1a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .fixed_2df7,
    .solid-63ee,
    .caption-silver-4669,
    .grid-8c51 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tabs_9a09 {
        background: none;
    }
}

/* Providers Section */
.cold-55d3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_d676 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_d676 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slow_d676 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev_7ee1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.prev_7ee1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.focus_8ecc {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hidden-bc1d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature_smooth_52d9 {
    list-style: none;
    padding: 0;
}

.feature_smooth_52d9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature_smooth_52d9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.article_blue_cb70 {
    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);
}

.article_blue_cb70 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.grid_under_afa3 {
    padding: var(--section-padding);
}

.backdrop_341e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_341e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver_e7d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.silver_e7d6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.wrapper-wood-12f6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.full-c837 {
    display: flex;
    flex-direction: column;
}

.element_c290 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.input_over_6f47 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.border-c921 {
    color: var(--accent-color);
}

.button-short-bfc0 {
    font-size: 1.25rem;
}

.accent-fast-1e15 {
    margin-bottom: 1rem;
}

.accent-fast-1e15 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.small_0bc2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.silver_a8b4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.background_tiny_abde {
    text-align: center;
}

.message-079a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-64a4 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.medium-bb46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-dynamic-8678 {
    margin: 2rem 0;
}

.button_liquid_847b {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.button_liquid_847b .pro_323c {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-2c25 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.message-7b6b {
    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;
}

.message-7b6b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bright_2ef6 {
    font-size: 2rem;
}

.slow_673f {
    display: flex;
    flex-direction: column;
}

.purple-09fa {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.block-9c4d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.wrapper_773b {
    padding: var(--section-padding);
}

.selected-1598 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .selected-1598 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected-1598 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_c075 {
    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);
}

.iron_c075:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.iron_c075 .message-079a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.iron_c075 .icon-64a4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.iron_c075 .text-glass-9973 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.dropdown_soft_022c {
    margin-top: 4rem;
}

.tabs_6e3d {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.disabled_d6be {
    overflow-x: auto;
}

.south-eeda {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.south-eeda thead {
    background: var(--accent-color);
}

.south-eeda th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.south-eeda td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.south-eeda tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.south-eeda tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.soft-baee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-complex-1211 {
    max-width: 900px;
    margin: 0 auto;
}

.black_f286 {
    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);
}

.black_f286:hover {
    border-color: var(--accent-color);
}

.info-next-63e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.info-next-63e5 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.input-north-b4c3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.black_f286.fn-active-cbaa .input-north-b4c3 {
    transform: rotate(45deg);
}

.summary-short-00e5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.black_f286.fn-active-cbaa .summary-short-00e5 {
    max-height: 1000px;
}

.summary-short-00e5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.content-e048 {
    padding: var(--section-padding);
}

.full-9eb9 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.slider_fresh_5cd4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_north_35f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_north_35f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite-8cdd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-cb98 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.black_703c {
    font-size: 2rem;
}

.focus_4433 {
    color: var(--text-white);
    margin: 0;
}

.label_easy_fa9a {
    list-style: none;
    padding: 0;
}

.label_easy_fa9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_easy_fa9a li:last-child {
    border-bottom: none;
}

.image-small-6254 {
    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);
}

.image-small-6254 p {
    color: var(--success-color);
    margin: 0;
}

.outer-b950 {
    margin-top: 3rem;
}

.pattern-blue-9b38 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.short_f0ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .short_f0ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle-7ce5 {
    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);
}

.secondary-74c9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.middle-7ce5 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.row_3d57 {
    padding: var(--section-padding);
}

.warm-53fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm-53fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_a765 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stone_a765:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sort-f262 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search_top_b70a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.texture-smooth-3f44 {
    flex: 1;
}

.pattern_99c2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.container_dark_7b97 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.static-f13f {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-bb4d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-bb4d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.pagination-liquid-2340 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.smooth_0ba2 {
    padding: var(--section-padding);
}

.active_bc4d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.title-c046 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-c046 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-plasma-32bf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-out-e093, .content_focused_05b7, .article_be05 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.article_be05 {
    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 */
.in_9f48 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_7323 {
    margin: 2rem 0;
}

.surface_small_563f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_8c9f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header_liquid_855f {
    list-style: none;
    padding: 0;
}

.header_liquid_855f 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;
}

.header_liquid_855f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.header_liquid_855f li:last-child {
    border-bottom: none;
}

.border_west_845b {
    text-align: center;
    margin-top: 2rem;
}

.dark_368d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.photo_ceca {
    padding: var(--section-padding);
}

.slider-9567 {
    margin: 2rem 0;
}

.shadow_hard_77d1 {
    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) {
    .shadow_hard_77d1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.shadow_hard_77d1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.north_e64d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.popup-gas-350f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.hard_01cb {
    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;
}

.status-5ea0 {
    flex: 1;
}

.tertiary_d133 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.component-bronze-775f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bronze-708f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.shade-narrow-ff1d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .shade-narrow-ff1d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.search-action-de56 {
    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);
}

.search-action-de56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.search-action-de56 .message-079a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-action-de56 .icon-64a4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.primary-prev-2cf5 {
    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);
}

.warm_ccb9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.warm_ccb9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.last-272e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .last-272e {
        grid-template-columns: 1fr 1fr;
    }
}

.input-b730 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-435f {
    margin-bottom: 1.5rem;
}

.section-435f label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-435f input,
.section-435f 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;
}

.section-435f input:focus,
.section-435f select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.secondary-focused-a006 {
    width: 100%;
    margin-top: 1rem;
}

.complex_c567 {
    display: flex;
    align-items: center;
}

.border_mini_46de {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.gold_caa9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.avatar-mini-d893 {
    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;
}

.media-7573 {
    color: var(--text-gray);
}

.bottom_c2b3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.pagination-hovered-89a7 {
    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);
}

.pagination-hovered-89a7 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.dropdown_tiny_9ca0 {
    margin-top: 3rem;
}

.content_pressed_0370 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.wide_604e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-5124 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.yellow-55a2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yellow-55a2:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.header_5536 {
    padding: var(--section-padding);
}

.copper-6de9 {
    margin: 2rem 0;
}

.stone_9ce7 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hot_177a {
    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;
}

.hot_177a:hover, .hot_177a.fn-active-cbaa {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.photo_3fb4 {
    display: none;
}

.photo_3fb4.fn-active-cbaa {
    display: block;
}

.photo_middle_4bbf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_1821 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.breadcrumb_4f34 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.breadcrumb_4f34 ul {
    list-style: none;
    padding: 0;
}

.breadcrumb_4f34 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.breadcrumb_4f34 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.icon_gas_e083 {
    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 */
.component_in_e651 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-black-8c81 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-6240 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline_tall_b0a4 {
    color: var(--accent-color);
    margin: 0;
}

.border_93bb {
    display: flex;
    gap: 1.5rem;
}

.mini-4c51 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description_fa0a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pattern_brown_a92b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern_brown_a92b.menu-gold-3138 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pattern_brown_a92b.block_9495 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.pattern_brown_a92b.up_e269 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.grid-south-6243 {
    margin-top: 2rem;
}

.menu_hard_e597 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper-c0d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .wrapper-c0d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-b015 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.preview-tall-a9fa {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tall_f36a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hard_4fc5 {
    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 */
.tooltip-left-8cd3 {
    padding: var(--section-padding);
}

.list-a48f {
    margin: 2rem 0;
}

.element_028b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.popup-center-93f0 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.silver_85bf {
    list-style: none;
    padding: 0;
}

.silver_85bf 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;
}

.silver_85bf li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.silver_85bf li:last-child {
    border-bottom: none;
}

.copper-dc21 {
    margin: 2rem 0;
}

.outline_south_7925 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture_right_2209 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture_right_2209 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-fdaf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_inner_02c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer_wide_2c57 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.glass_8923 {
    margin-top: 2rem;
}

.bottom_bbeb {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.carousel_d521 {
    list-style: none;
    padding: 0;
}

.dim_b96a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.dim_b96a a {
    color: var(--accent-color);
    text-decoration: none;
}

.dim_b96a a:hover {
    text-decoration: underline;
}

.title_d96f {
    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 */
.heading-action-1f08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_blue_2064 {
    margin: 2rem 0;
}

.content-83ec {
    margin-bottom: 3rem;
}

.content-83ec .pattern_8c9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active_d345 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-ab4a {
    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);
}

.feature-ab4a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.content_up_afc7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .content_up_afc7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-bfc4 {
    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 */
.frame_aef5 {
    padding: var(--section-padding);
}

.video-2919 {
    margin: 2rem 0;
}

.feature-63dd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.primary-a554 {
    overflow-x: auto;
    margin: 2rem 0;
}

.complex-4f72 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.wrapper-f35c {
    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;
}

.paragraph_blue_fae5 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.selected_38e1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .selected_38e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_dim_fb70 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_dim_fb70 .pro_323c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.widget_dim_fb70 .alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dirty_bfa7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.menu_silver_7d60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-112c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-112c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blue_36e7 {
    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;
}

.blue_36e7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.complex-451e {
    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);
}

.easy-6435 {
    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;
}

.focus_large_523c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs-brown-ff43 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.wrapper-cb74 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.banner-right-5793 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label_e6eb {
    color: var(--text-white);
    font-weight: 600;
}

.column-purple-f5d0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.in_8a75 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in_8a75 .description-hot-a305 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pro-96fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pro-96fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_basic_b4b0 {
    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);
}

.article_basic_b4b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.article_basic_b4b0 .message-079a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article_basic_b4b0 .icon-64a4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.icon-small-e56f {
    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);
}

.icon-pink-7f62 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.icon-pink-7f62 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.focus_cdf7 {
    margin: 2rem 0;
}

.sort_c790 {
    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);
}

.sort_c790:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.video_paper_c785 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus-gas-6918 {
    flex: 1;
}

.up-ed7e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-65f8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hard_fe53 {
    margin: 2rem 0;
}

.badge-6740 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-6740 .alert-glass-7262 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.badge-6740 .last_917d {
    color: var(--text-gray);
    margin: 0;
}

.background_white_68af {
    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);
}

.background_white_68af .component_fb4f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.dirty_bfa7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.shadow-lite-0139 {
    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;
}

.frame-6184 {
    flex: 1;
}

.message-light-7126 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.action_2230 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.disabled-129e {
    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;
}

.top_6a1b {
    flex: 1;
}

.action_8ebb {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.progress_under_ba87 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.summary_0418 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.logo-5e06 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.bronze_ba13 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.bronze_ba13 .description-hot-a305 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tall_f12f {
    margin-top: 2rem;
}

.tall_f12f .pattern-blue-9b38 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.paper-b8ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_cool_c4d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .badge_cool_c4d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_cool_c4d6 .background_tiny_abde {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_a282 {
    margin: 2rem 0;
}

.grid-huge-2d15 {
    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 */
.description-copper-0200 {
    padding: var(--section-padding);
}

.upper-c736 {
    margin-top: 1rem;
}

.summary_west_a834 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.summary_west_a834 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.summary_west_a834 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.slow_288a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold_dc70 {
    margin: 2rem 0;
}

.smooth-3a90 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.texture-short-a904 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.menu-basic-e0ab {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.hero-pink-2f7f {
    margin: 2rem 0;
}

.alert-124c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.alert-124c .pattern_8c9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask_white_47de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mask_white_47de {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stale_0f79 {
    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);
}

.header_basic_f448 {
    color: var(--text-white);
    font-weight: 600;
}

.red-2fcc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.west_5ae3 {
    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);
}

.west_5ae3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.glass_2cbd {
    padding: var(--section-padding);
}

.south-c80f {
    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;
}

.south-c80f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tertiary_2518 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary_2518 .secondary-74c9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_2518 .green_7f7f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.text-b82c {
    flex: 1;
}

.column-plasma-c4a7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail-2b57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-2b57 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail-2b57 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.clean_45ee {
    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);
}

.clean_45ee p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.clean_45ee strong {
    color: var(--warning-color);
}

/* Slots Section */
.frame-purple-7b25 {
    padding: var(--section-padding);
}

.lite_51b8 {
    margin: 2rem 0;
}

/* Table Games Section */
.nav-pro-c69c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-huge-b758 {
    margin: 2rem 0;
}

.aside-outer-c9c6 {
    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);
}

.aside-outer-c9c6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.aside-outer-c9c6 .texture_tall_f45a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-outer-c9c6 .input-3a3d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.main-last-ff8c {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.main-last-ff8c .component_fb4f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pink-7b78 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_clean_2397 {
    margin: 2rem 0;
}

.smooth-0e0b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-b715 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hovered_a413 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card_e201 {
    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);
}

.card_e201:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.card_e201.fn-active-cbaa {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_3889 {
    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);
}

.status-8e95 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status-8e95 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.module-7a0a {
    padding: var(--section-padding);
}

.right-e668 {
    margin: 2rem 0;
}

.modal_hard_3f28 {
    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);
}

.modal_hard_3f28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .modal_hard_3f28 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.upper-796b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.light-61dc {
    flex: 1;
}

.hover-gas-6d05 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sidebar-in-f3f2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_bronze_0dda {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.left-a1ba {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.avatar-2e47 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer_fixed_2bdd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus-4372 {
    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;
}

.focus-4372:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item_17cd {
    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);
}

.lite_6b8b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lite_6b8b strong {
    color: var(--accent-color);
}

/* New Games Section */
.row_b2c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_blue_df87 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .icon_blue_df87 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon_blue_df87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-d455 {
    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;
}

.thumbnail-d455:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.current-1538 {
    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;
}

.cold_686d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.shadow_ca30 {
    font-size: 2rem;
}

.hover_1c21 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.green-d647 {
    flex: 1;
}

.box-black-318a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.dark-59c4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accent_d2e1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop-99b0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-0ef4 {
    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;
}

.aside_slow_204d {
    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;
}

.aside_slow_204d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider_dark_f15e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-huge-a96b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-gold-ccae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .image-gold-ccae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_slow_5faf {
    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);
}

.huge_58e7 {
    color: var(--text-white);
    font-weight: 600;
}

.caption_blue_3081 {
    color: var(--accent-color);
    font-weight: 600;
}

.heading-large-7b29 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.heading-large-7b29 strong {
    color: var(--accent-color);
}

/* Security Section */
.fixed-8513 {
    padding: var(--section-padding);
}

/* Benefits Section */
.background_427a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.last_24d0 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.menu_0a60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_f3ae {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.wrapper-brown-d6fe {
    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) {
    .wrapper-brown-d6fe {
        flex-direction: column;
        gap: 1rem;
    }
}

.wrapper-brown-d6fe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper-brown-d6fe .disabled-129e {
    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;
}

.wrapper-brown-d6fe .top_6a1b {
    flex: 1;
}

.wrapper-brown-d6fe .action_8ebb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wrapper-brown-d6fe .progress_under_ba87 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.block-c56d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-c56d .surface_4738 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-c56d .button-bc20 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-c56d .button-bc20 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.block-c56d .button-bc20 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.element-39e0 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dirty-a79a {
    padding: var(--section-padding);
}

.thumbnail-bf34 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .thumbnail-bf34 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-middle-9930 {
    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);
}

.block-middle-9930:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.block-middle-9930 .stone_aa26 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-middle-9930 .card_copper_9845 {
    flex: 1;
}

.block-middle-9930 .secondary-west-d2c6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-middle-9930 .wrapper-ad15 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shade-stone-d3fc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-stone-d3fc .dark-f879 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade-stone-d3fc .paragraph-1069 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.shade-stone-d3fc .paragraph-1069 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);
}

.shade-stone-d3fc .paragraph-1069 li:last-child {
    border-bottom: none;
}

.shade-stone-d3fc .paragraph-1069 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;
}

.shade-stone-d3fc .paragraph-1069 li strong {
    color: var(--text-white);
}

.static-ee06 {
    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);
}

.static-ee06 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.static-ee06 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.clean-e7e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-dynamic-dd04 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-dynamic-dd04 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stale_4968 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stale_4968:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_40b8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed_8639 {
    font-size: 2rem;
}

.message_46d7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.prev-d106 {
    flex: 1;
}

.cold-1a49 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold-1a49 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cold-1a49 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.row-fixed-76cd {
    margin-top: 3rem;
}

.element_028b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.popup-center-93f0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.silver_85bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver_85bf li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.silver_85bf li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.silver_85bf li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.title-short-2aff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-20a2 {
    margin: 2rem 0;
}

.thumbnail_soft_b1fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.thumbnail_soft_b1fa .pattern_8c9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.basic_a41b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .basic_a41b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border_steel_3e13 {
    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);
}

.border_steel_3e13:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.widget_eea8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.layout_5b50 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.sort-clean-3cdd {
    padding: var(--section-padding);
}

.paper_f95f {
    margin: 2rem 0;
}

.sidebar_last_9d92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .sidebar_last_9d92 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar_last_9d92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-5a0d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav-5a0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.motion_ef74 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.photo-6dfa {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.blue-0ead {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blue-0ead.sidebar_light_1df6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.detail-7f48 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.table_46f8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.black-a873 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification_paper_6b1c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.narrow_c12e {
    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);
}

.narrow_c12e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.narrow_c12e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.accent_active_b911 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-0952 {
    margin: 2rem 0;
}

.background_6285 {
    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) {
    .background_6285 {
        flex-direction: column;
        gap: 1rem;
    }
}

.background_6285:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.background_6285::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);
}

.picture_9182 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.outline-3c37 {
    flex: 1;
}

.warm-589b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dirty_56e8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_56e8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.action_1aa8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-5e3d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar-694f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .avatar-694f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_2c34 {
    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);
}

.modal_prev_bffa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-6f21 {
    flex: 1;
}

.gradient_black_046b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.pagination-732d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.border_9c11 {
    margin-top: 2rem;
    text-align: center;
}

.yellow-5a09 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow-5a09 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.input-solid-59f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-solid-59f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-735e {
    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);
}

.upper-735e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.upper-735e .media_down_b735 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-735e .highlight-afe8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.upper-735e .current_a2f2 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.upper-735e .link-827f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.secondary-last-b818 {
    padding: var(--section-padding);
}

.image-c75a .shadow_out_e8fe {
    flex: 1;
}

/* Promo Calendar Section */
.current-5ca5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-0d70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-0d70 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_40ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_aeba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.bottom-966d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.up_af7c {
    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);
}

.focused-1d45 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.media-1588 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.north_cdd6 {
    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);
}

.north_cdd6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north_cdd6 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.column-0533 {
    padding: var(--section-padding);
}

.gallery-c891 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gallery-c891 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-0294 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_paper_9af7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.small_0fee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small_0fee li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.description_fixed_7e89 {
    margin-top: 3rem;
}

.description_fixed_7e89 .element_028b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.description_fixed_7e89 .popup-center-93f0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_fixed_7e89 .silver_85bf {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.description_fixed_7e89 .silver_85bf li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.description_fixed_7e89 .silver_85bf li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.description_fixed_7e89 .silver_85bf li strong {
    color: var(--warning-color);
}

.article-c6e1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-c6e1 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gradient_6a4c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-f4c5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-f4c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_f6ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_f6ab .pattern_8c9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination-d777 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled-stone-82d9 {
    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);
}

.disabled-stone-82d9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.article-white-7019 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-last-445a {
    flex: 1;
}

.over_0c1c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.photo-stale-2d3c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.paper_9208 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.form_wide_e243 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.rough_ee96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .rough_ee96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_ef18 {
    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);
}

.wrapper_ef18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.iron-f6b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-15ab {
    color: var(--text-gray);
    font-size: 1rem;
}

.warm_ccb9 {
    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);
}

.focused-4a80 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focused-4a80 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.alert-fresh-b402 { 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; }
.item-6de6, .paper-5d57 { max-width:100%; height:auto; }

.accordion-01b7, .list-c627, .tertiary_6f76 { white-space:normal; }

.background_3519,
.title-3f6c,
.footer-active-66be,
.input-solid-59f4,
.hard_fe53,
.border_f37c {
  flex-wrap:wrap;
}

[class*="grid"],
.rough_ee96,
.sidebar_last_9d92,
.paper_58a5 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tabs_9a09 img,
.title-3f6c img,
.right-3661 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.column_bf9a, .in-7ec0,
.column_eb78, .media-dbbd {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.disabled_d6be { width:100%; overflow-x:auto; }
.disabled_d6be table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.slow_d676 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .slow_d676 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.prev_7ee1 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.selected-1598,
.active-cdeb,
.table_focused_e99a,
.bright_6218,
.shade-narrow-ff1d,
.rough_ee96,
.sidebar_last_9d92,
.paper_58a5,
.widget_0145,
.right-e668,
.slow_d676 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .selected-1598,
  .active-cdeb,
  .table_focused_e99a,
  .bright_6218,
  .shade-narrow-ff1d,
  .rough_ee96,
  .sidebar_last_9d92,
  .paper_58a5,
  .widget_0145,
  .right-e668,
  .slow_d676 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.iron_c075,
.search-action-de56,
.wrapper_ef18,
.tag_bc4a,
.nav-5a0d,
.form_97fd,
.modal_hard_3f28,
.prev_7ee1 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.widget-1b62,
.status-bright-a914,
.thumbnail-bright-e30e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.widget-1b62 > *,
.status-bright-a914 > *,
.thumbnail-bright-e30e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f55e */
.shadow-element-o6 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
