/* {$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;
}

.message-clean-5c8b {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.black-eb0c {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .black-eb0c {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .black-eb0c {
        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 */
.disabled-daef {
    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);
}

.avatar-94fb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .avatar-94fb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .mini-a5b4 {
        grid-column: 1;
    }
    
    .gradient_warm_a602 {
        grid-column: 2;
    }
    
    .layout_153f {
        grid-column: 3;
    }
}

.mini-a5b4 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.mini-a5b4:hover img {
    transform: scale(1.05);
}

/* Navigation */
.light_0465 {
    display: none;
}

@media (min-width: 1024px) {
    .light_0465 {
        display: block;
    }
}

/* Grouped Navigation */
.status-26a5 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.alert-77a2 {
    position: relative;
}

.steel_17de {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.alert-77a2 .advanced_97d4 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.advanced_97d4 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid_9b48 {
    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;
}

.grid_9b48:hover,
.grid_9b48.fn-active-cf2c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.component-narrow-0fda {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .component-narrow-0fda {
        display: flex;
    }
}

/* Mobile Register Button */
.gradient_warm_a602 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient_warm_a602 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.east-653b {
    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;
}

.east-653b::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 */
.layout_153f {
    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) {
    .layout_153f {
        display: none;
    }
}

.layout_153f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.layout_153f.fn-active-cf2c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.layout_153f.fn-active-cf2c span:nth-child(2) {
    opacity: 0;
}

.layout_153f.fn-active-cf2c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cool_c3cf {
    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;
}

.cool_c3cf.fn-active-cf2c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.table-c1c0 {
    overflow: hidden;
}

.frame-6c88 {
    list-style: none;
    padding: 0.75rem 0;
}

.article_6972 {
    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;
}

.article_6972:hover,
.article_6972.fn-active-cf2c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.article_6972.breadcrumb-yellow-755f {
    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;
}

.article_6972.breadcrumb-yellow-755f::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 */
.hot-e351 {
    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;
}

.nav-out-5038 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.nav-out-5038:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.lite-1321 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.lite-1321:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.logo-41bd {
    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;
}

.logo-41bd:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.black_ceeb {
    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;
}

.fixed-3af2 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.fixed-3af2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination_5cdd {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination_5cdd:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.first-7dd2 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.first-7dd2: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);
}

.block-55ba {
    font-size: 1em;
    font-weight: 700;
}

.thick_6136 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.mini-1d1e {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.mini-1d1e::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;
}

.easy-8f3a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .easy-8f3a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.sort_east_e098 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.primary-down-059c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.preview_b810 {
    margin-bottom: 2rem;
}

.row_10cc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .row_10cc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-7a5e {
    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);
}

.banner-stone-df5c {
    font-size: 1.5rem;
}

.breadcrumb_4698 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pattern-72c7 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bronze-c5b3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.bronze-c5b3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.carousel_6aa8 {
    text-align: center;
    margin-bottom: 3rem;
}

.surface_7b91 {
    margin-bottom: 1rem;
}

.pro-f6a6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pagination_1d77 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pagination_1d77 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .pagination_1d77.bright_f9b2 {
        direction: rtl;
    }
    
    .pagination_1d77.bright_f9b2 > * {
        direction: ltr;
    }
}

.paragraph_orange_8cf3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.paragraph_orange_8cf3:first-child {
    margin-top: 0;
}

.carousel-thick-a872 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.breadcrumb-motion-4239 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.breadcrumb-motion-4239:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.selected-287e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected-287e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-hard-3c73 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-silver-aa32 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.media-up-8c2b {
    list-style: none;
}

.media-up-8c2b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-up-8c2b li:last-child {
    border-bottom: none;
}

/* Games Features */
.table_9124 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.progress-tiny-f244 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.old_dab4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.clean-095c {
    margin: 2rem 0;
}

.highlight_pressed_c3d8 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.icon_696a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.bottom-f367 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.small-19bf {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.outer_fedf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_fedf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-d8ce {
    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);
}

.hovered-d8ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.down_52b8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video_wood_4216 {
    font-size: 1.5rem;
}

.image_smooth_49f7 {
    color: var(--accent-color);
    margin: 0;
}

.blue_411f {
    list-style: none;
}

.blue_411f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.blue_411f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.pressed_2aed {
    margin: 2rem 0;
}

.photo-cf7b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.icon-fast-1a20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .icon-fast-1a20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-medium-a5be {
    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);
}

.last_aada {
    font-size: 1.25rem;
}

.right_e34f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.menu-center-c848,
.accordion-45e7 {
    text-align: center;
    margin: 2rem 0;
}

.dim_773b,
.thumbnail-tall-b20c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.chip-6e7b {
    margin: 2rem 0;
    text-align: center;
}

.footer-short-315b {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-short-315b::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;
}

.photo-f047 {
    position: relative;
    z-index: 1;
}

.banner_7e1d {
    margin-bottom: 1rem;
}

.pagination_9b36 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.basic_7b07 {
    margin-bottom: 3rem;
}

.card-pink-751c {
    margin-top: 3rem;
}

.sidebar-focused-829e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sidebar-focused-829e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-focused-829e .wrapper-7a5e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail-3aca {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_1d7a {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.aside_pressed_da1d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.element_56ef {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .element_56ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_56ef {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.description_4480 {
    margin-bottom: 1rem;
}

.small_8469 img {
    margin-bottom: 1rem;
}

.east_991e {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-0351 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.container-5ee9 {
    list-style: none;
}

.container-5ee9 li {
    margin-bottom: 0.5rem;
}

.container-5ee9 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.container-5ee9 a:hover {
    color: var(--accent-color);
}

.last-dde1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mini-b811 {
    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);
}

.mini-b811:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.search-brown-25b6 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.search-brown-25b6 p {
    margin-bottom: 0.25rem;
}

.hero_8e01 {
    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) {
    .hero_8e01 {
        flex-direction: row;
    }
}

.sort-d48f {
    text-align: center;
}

@media (min-width: 768px) {
    .sort-d48f {
        text-align: left;
    }
}

.sort-d48f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown-large-8cfe {
    font-size: 0.75rem !important;
}

.message_liquid_5af6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary_1e27 {
    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);
    }
}

.summary_903e {
    animation: fadeInUp 0.6s ease-out;
}

.border-cb82 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.new_1715 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new_1715 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.slow-b250 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow-b250 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-1c04 {
    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);
}

.aside-1c04 .old_dab4 {
    font-size: 1.25rem;
}

.aside-1c04 .button_center_4f08 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.thumbnail-3a4e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thumbnail-3a4e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_iron_526b {
    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);
}

.block_iron_526b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-cd15 {
    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);
}

.heading_d446 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wood-fd13 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_f8e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-soft-c401 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component-soft-c401 .modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-soft-c401 .dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_9d96 {
    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);
}

.north_429c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.north_429c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.north_429c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.wood_fad2 {
    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);
}

.chip-brown-0f2a {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cold_d0b8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cold_d0b8 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.cold_d0b8 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);
}

.cold_d0b8 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.cold_d0b8 input::placeholder {
    color: var(--text-muted);
}

.section-slow-ffe1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tiny-65a1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.tiny-65a1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.popup_bronze_0a78 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.popup_bronze_0a78:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.icon-fast-1a20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-fast-1a20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-medium-a5be {
    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);
}

.text-medium-a5be .last_aada {
    font-size: 1.25rem;
}

.text-medium-a5be .right_e34f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.pattern-7a3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-01a2 {
    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);
}

.current-01a2 .old_dab4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.current-01a2 .modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.current-01a2 .dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-fluid-cec7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-left-c28f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar-left-c28f .medium-6fe9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-left-c28f .label_6345 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list-c135 {
    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);
}

.hover-bottom-c447 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-bottom-c447 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-gas-b612 {
    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);
}

.footer-gas-b612:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-6e05 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.shade_motion_ecfe {
    flex: 1;
}

.green-2351 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.menu_cold_0044 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro_9ccf {
    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);
}

.pro_9ccf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.paragraph_aaec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_aaec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_51d6 {
    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);
}

.gold_51d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_cb62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-up-6fda {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.section_3974 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lower-c820 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.preview-solid-e68e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_280e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_89ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_89ec .widget_fd42 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_89ec .tertiary-inner-18b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_2e4a {
    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);
}

.panel-2666 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_fluid_702f {
    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_fluid_702f .old_dab4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video_fluid_702f .modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_fluid_702f .dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list-soft-4b20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-soft-4b20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-in-8290 {
    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);
}

.gradient-in-8290:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.highlight_82a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_82a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video_outer_0bf9 {
    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);
}

.video_outer_0bf9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-b3fd {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-638a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.icon_696a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.basic-a1c1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.element-8743 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-stone-d857 {
    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);
}

.focus-stone-d857:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-motion-e762 {
    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);
}

.hovered_c43d {
    flex: 1;
}

.hard_31f4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.progress-eb4d {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.column-last-37d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-f6d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_cb8a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_cb8a .medium-6fe9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature_cb8a .label_6345 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-45e7 {
    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);
}

.header-a4db {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-a4db {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.slider_wide_3e63 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_wide_3e63 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_a6ab {
    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);
}

.hot_a6ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in-449f {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_d970 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component_1b8e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature-ed1b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_4996 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_422e {
    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);
}

.highlight-1be6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-tiny-de34 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button-gas-d10b {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-2666 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_fluid_702f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.video_fluid_702f .modal-stone-a3be {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_fluid_702f .dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_a78a {
    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);
}

.cold-368f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cold-368f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold-368f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth_9b6a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.smooth_9b6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-4ed8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.surface-affd {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.box-pressed-7c3c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_987e {
    padding: 1.5rem;
}

.tertiary-d258 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.up-d94c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up-d94c 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;
}

.up-d94c li:last-child {
    border-bottom: none;
}

.up-d94c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.component_fc9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_fc9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_895c {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.avatar_895c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_bd69 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle-d42c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tabs_282e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.module_dc04 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.small_7069 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-upper-0fa8 {
    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);
}

.glass_65db {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_solid_5647 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_c7ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-369b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.in-0046 {
    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);
}

.last_0647 {
    text-align: center;
}

.chip_last_65dd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slow-02b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gas-3eb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick_6ec8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick_6ec8 .modal-stone-a3be {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thick_6ec8 .dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_3377 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture_3377 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_3377 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-b902 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hard-b902:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_full_f982 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active_over_6e60 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-stone-a3be {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.carousel_plasma_39c8 {
    padding: 1.5rem;
}

.dirty-9107 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-0bec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-0bec 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;
}

.module-0bec li:last-child {
    border-bottom: none;
}

.module-0bec li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.down-3489 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.carousel-narrow-1f5d {
    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);
}

.carousel-narrow-1f5d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-6322 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast_aaac {
    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);
}

.notice-cd15 {
    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;
}

.heading_d446 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood-fd13 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-c7ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_pink_0ba9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_glass_8a72 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_f976 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-last-7958 {
    display: flex;
    gap: 1rem;
}

.sidebar-last-7958 .border-cfdd {
    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;
}

.tooltip_fresh_7cc8 {
    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);
}

.wood_47eb {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hovered_6ef5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_6ef5 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;
}

.hovered_6ef5 li:last-child {
    border-bottom: none;
}

.hovered_6ef5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.image_c8cb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image_c8cb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_c8cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-middle-7c24 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-middle-7c24:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-inner-488b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.large_fd95 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget_fd42 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.complex_541c {
    font-size: 1rem;
}

.tertiary-b278 {
    padding: 1.5rem;
}

.tertiary-inner-18b7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.summary_mini_5920 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.summary_mini_5920 .last_0647 {
    text-align: center;
}

.summary_mini_5920 .slow-02b1 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.summary_mini_5920 .active-6ad7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component-c10c {
    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);
}

.component-c10c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.background_fixed_8dbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_fixed_8dbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_lower_b5ec {
    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);
}

.primary_lower_b5ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-silver-fce5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_1e4c {
    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);
}

.lite-68ba {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-blue-6263 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-active-33cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_eeb6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.basic_d1c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_huge_2956 {
    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);
}

.link_e292 {
    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;
}

.link_e292.outer-0239 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.link_e292.main-c28c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.link_e292.outer-260d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.link_e292.progress-hard-107d {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.link_e292.paper_3699 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.green_aa13 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_hard_bc4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_under_f8ad {
    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);
}

.static_e4d9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.progress-fluid-cec7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-fluid-cec7 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;
}

.progress-fluid-cec7 li:last-child {
    border-bottom: none;
}

.progress-fluid-cec7 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.picture-slow-1318 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-slow-1318 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-slow-1318 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-fa83 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outline-fa83:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-fa83.background-31fe {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .outline-fa83.background-31fe {
        grid-column: span 3;
    }
}

.row_edea {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.outline-fa83.background-31fe .row_edea {
    background: rgba(6, 182, 212, 0.1);
}

.tooltip_center_6b35 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pagination-8cf7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.outline-fa83.background-31fe .pagination-8cf7 {
    color: var(--info-color);
}

.box-1429 {
    padding: 1.5rem;
    text-align: center;
}

.row_0d10 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.outline-fa83.background-31fe .row_0d10 {
    color: var(--info-color);
}

.disabled-prev-392a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.layout-8346 {
    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 */
.gas-fb63 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas-fb63 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-5490 {
    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);
}

.pro-5490:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm_95fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-01a2 {
    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);
}

.last_aada {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered_bff1 {
    flex: 1;
}

.photo-cf7b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.huge_8f4c {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-c631 {
    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);
}

.notification_center_0361 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.menu-tall-8b4c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.secondary_1e27 {
    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);
}

.west-90c8 {
  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);
}

.west-90c8 .last_0647 {
    text-align: center;
}

.west-90c8 .chip_last_65dd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.west-90c8 .slow-02b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-iron-d016 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over-8323 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-e9cf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top-0a20 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_9239 {
    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);
}

.tooltip-eb67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.badge-f504 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-96db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient-96db {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-96db {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_5806 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs_5806:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_purple_e5f9 {
    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);
}

.hover-5e13 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-large-af7a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.white-9871 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.white-9871.pagination_tiny_6616 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.white-9871.block-610a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.white-9871.card-full-4cec {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.focused_eebf {
    padding: 1.5rem;
    text-align: center;
}

.small-3873 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disabled_29da {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.disabled_29da .overlay_0791 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.bottom_d224 {
    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);
}

.bottom_d224:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active_9f73 {
  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);
}

.outer-d9f3 {
    text-align: center;
}

.outer-d9f3 .chip_last_65dd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.outer-d9f3 .slow-02b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.pro-28ab { text-align: center; }
.hovered_5d6d { text-align: left; }
.paragraph-copper-6789 { text-align: right; }

.pro_a0c8 { margin-bottom: 0; }
.container_clean_bca1 { margin-bottom: 0.5rem; }
.old-f13f { margin-bottom: 1rem; }
.status_3b96 { margin-bottom: 1.5rem; }
.top-1f62 { margin-bottom: 2rem; }

.tabs-inner-ba67 { margin-top: 0; }
.short-b8c1 { margin-top: 0.5rem; }
.media_tall_7bf5 { margin-top: 1rem; }
.table-5a05 { margin-top: 1.5rem; }
.module_prev_f1d6 { margin-top: 2rem; }

.fn-hidden-cf2c { display: none; }
.fn-visible-cf2c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .mini-1d1e {
        padding: 6rem 0 3rem;
    }
    
    .easy-8f3a {
        text-align: center;
    }
    
    .pagination_1d77 {
        text-align: center;
    }
    
    .row_10cc {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .disabled-daef,
    .cool_c3cf,
    .footer-short-315b,
    .aside_pressed_da1d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .mini-1d1e {
        background: none;
    }
}

/* Providers Section */
.old-955b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-3b32 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static-3b32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static-3b32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-785d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-785d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title-red-b5cd {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.last-6389 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.center_ebd4 {
    list-style: none;
    padding: 0;
}

.center_ebd4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.center_ebd4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hero_1d16 {
    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);
}

.hero_1d16 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.notice-hard-c122 {
    padding: var(--section-padding);
}

.tooltip_e669 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_e669 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-1424 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module-1424:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.up-145d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.clean-5518 {
    display: flex;
    flex-direction: column;
}

.soft-c1bd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.texture-c0c5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.outer_f9db {
    color: var(--accent-color);
}

.progress_lower_0067 {
    font-size: 1.25rem;
}

.solid_9230 {
    margin-bottom: 1rem;
}

.solid_9230 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.pattern-371c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.label-6497 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.last_0647 {
    text-align: center;
}

.chip_last_65dd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slow-02b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.disabled-3774 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_f16b {
    margin: 2rem 0;
}

.status_6597 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.status_6597 .old_dab4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface-df02 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.inner_c4a7 {
    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;
}

.inner_c4a7:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table-b76e {
    font-size: 2rem;
}

.overlay-b960 {
    display: flex;
    flex-direction: column;
}

.section-b6af {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.box-3f36 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.block-small-7aed {
    padding: var(--section-padding);
}

.north_a8e3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .north_a8e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north_a8e3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-78cc {
    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);
}

.tooltip-78cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip-78cc .chip_last_65dd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tooltip-78cc .slow-02b1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tooltip-78cc .article-e3e6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.shadow_13a9 {
    margin-top: 4rem;
}

.filter-4de9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.nav_down_67da {
    overflow-x: auto;
}

.badge_8326 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.badge_8326 thead {
    background: var(--accent-color);
}

.badge_8326 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.badge_8326 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_8326 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.badge_8326 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.row-clean-34b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm-7f8a {
    max-width: 900px;
    margin: 0 auto;
}

.hidden-2ed3 {
    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);
}

.hidden-2ed3:hover {
    border-color: var(--accent-color);
}

.narrow-4965 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.narrow-4965 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.fast-ac4f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hidden-2ed3.fn-active-cf2c .fast-ac4f {
    transform: rotate(45deg);
}

.image-e631 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hidden-2ed3.fn-active-cf2c .image-e631 {
    max-height: 1000px;
}

.image-e631 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.section_8bda {
    padding: var(--section-padding);
}

.north_429c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.photo-new-af77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-purple-f2b8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-purple-f2b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout_stale_bc91 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-bfdb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.motion_f982 {
    font-size: 2rem;
}

.accent-b631 {
    color: var(--text-white);
    margin: 0;
}

.detail_plasma_8a8a {
    list-style: none;
    padding: 0;
}

.detail_plasma_8a8a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_plasma_8a8a li:last-child {
    border-bottom: none;
}

.status-97de {
    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);
}

.status-97de p {
    color: var(--success-color);
    margin: 0;
}

.footer-a97b {
    margin-top: 3rem;
}

.wood_47eb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.module_narrow_5450 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module_narrow_5450 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list_5067 {
    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);
}

.yellow_0430 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.list_5067 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.red_0e95 {
    padding: var(--section-padding);
}

.overlay-basic-3a35 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-basic-3a35 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-hard-10a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.item-hard-10a3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.disabled_black_4350 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tag-6441 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stone_8f7e {
    flex: 1;
}

.texture_lite_b628 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tertiary_4324 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.widget-out-78c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-plasma-4079 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-plasma-4079:last-child {
    border-bottom: none;
}

/* Comparison Section */
.article-a485 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.simple_5fc4 {
    padding: var(--section-padding);
}

.in_5c4b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hidden-5f1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-5f1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-d423 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_cef8, .green_3324, .popup-stale-a549 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.popup-stale-a549 {
    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 */
.west_1fb2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_easy_a450 {
    margin: 2rem 0;
}

.top-06ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_active_1b4c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-lower-67db {
    list-style: none;
    padding: 0;
}

.footer-lower-67db 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;
}

.footer-lower-67db li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer-lower-67db li:last-child {
    border-bottom: none;
}

.wrapper-dda6 {
    text-align: center;
    margin-top: 2rem;
}

.frame_ea14 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.light_d67f {
    padding: var(--section-padding);
}

.lite-ccd4 {
    margin: 2rem 0;
}

.carousel_bright_e5b2 {
    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) {
    .carousel_bright_e5b2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.carousel_bright_e5b2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert_old_4833 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.slider_44ea {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.dark_a248 {
    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;
}

.active_475d {
    flex: 1;
}

.fixed-bf69 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.grid_b742 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup_53c2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.smooth-384e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .smooth-384e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter-smooth-3d35 {
    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);
}

.filter-smooth-3d35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter-smooth-3d35 .chip_last_65dd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-smooth-3d35 .slow-02b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video_3c6e {
    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);
}

.chip_228a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.chip_228a strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.main_copper_508a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .main_copper_508a {
        grid-template-columns: 1fr 1fr;
    }
}

.popup_350e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow-4a6a {
    margin-bottom: 1.5rem;
}

.narrow-4a6a label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.narrow-4a6a input,
.narrow-4a6a 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;
}

.narrow-4a6a input:focus,
.narrow-4a6a select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.feature-dirty-496a {
    width: 100%;
    margin-top: 1rem;
}

.blue_485f {
    display: flex;
    align-items: center;
}

.image-e335 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.easy_5c9d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.cool-0dbf {
    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;
}

.article-69ad {
    color: var(--text-gray);
}

.mask-a864 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.tooltip-stale-b94a {
    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);
}

.tooltip-stale-b94a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.first-4d86 {
    margin-top: 3rem;
}

.frame-gas-7b45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.label-pink-d7cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-b466 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.content_ca32 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content_ca32:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.banner_fast_88dc {
    padding: var(--section-padding);
}

.form-dbfa {
    margin: 2rem 0;
}

.mini_f536 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hidden_7161 {
    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;
}

.hidden_7161:hover, .hidden_7161.fn-active-cf2c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.large-bb98 {
    display: none;
}

.large-bb98.fn-active-cf2c {
    display: block;
}

.photo-06ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_1f1a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.top-a59b h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.top-a59b ul {
    list-style: none;
    padding: 0;
}

.top-a59b ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.top-a59b ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.out_fc90 {
    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 */
.soft-fd82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_brown_1bbd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_c74c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hot_c809 {
    color: var(--accent-color);
    margin: 0;
}

.summary_421b {
    display: flex;
    gap: 1.5rem;
}

.chip-30d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.row_large_ce02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.north_dac6 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.north_dac6.image_copper_2292 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.north_dac6.disabled_888d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.north_dac6.full-cadd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.item_slow_8314 {
    margin-top: 2rem;
}

.mini-2b92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column-3662 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .column-3662 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_5280 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.red_a69d {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.badge-pressed-9cec {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.breadcrumb_lite_2955 {
    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 */
.gallery_fresh_99ba {
    padding: var(--section-padding);
}

.hot-7c39 {
    margin: 2rem 0;
}

.mask_59d5 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.yellow-4c15 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.module-47c4 {
    list-style: none;
    padding: 0;
}

.module-47c4 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;
}

.module-47c4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.module-47c4 li:last-child {
    border-bottom: none;
}

.header_a721 {
    margin: 2rem 0;
}

.main_fluid_4596 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort-static-4293 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort-static-4293 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar_c24b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_next_1dd5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo-8128 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.photo-old-dd5f {
    margin-top: 2rem;
}

.green-2351 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.description-lower-493a {
    list-style: none;
    padding: 0;
}

.tag_paper_3e70 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tag_paper_3e70 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tag_paper_3e70 a:hover {
    text-decoration: underline;
}

.primary-right-2c6b {
    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 */
.slider-cc0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold-20a6 {
    margin: 2rem 0;
}

.component_5523 {
    margin-bottom: 3rem;
}

.component_5523 .active_active_1b4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dynamic-904f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.media-f338 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.media-f338:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.basic-7a79 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .basic-7a79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_down_0cff {
    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 */
.hidden_clean_9cb0 {
    padding: var(--section-padding);
}

.focused_7172 {
    margin: 2rem 0;
}

.detail_hard_f64b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.new-4827 {
    overflow-x: auto;
    margin: 2rem 0;
}

.section_701e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.secondary_87dc {
    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;
}

.table_motion_1686 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.footer_stone_d3bf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .footer_stone_d3bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_basic_5aed {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_basic_5aed .old_dab4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.container_basic_5aed .modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden-63b1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.tall-b90f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-7f5a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-7f5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-903a {
    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;
}

.form-903a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.rough_1771 {
    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);
}

.dirty_443b {
    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;
}

.large_e901 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-short-bad0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.block_cc78 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.out_fc05 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stale-6356 {
    color: var(--text-white);
    font-weight: 600;
}

.box_6738 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer_copper_ec8b {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_copper_ec8b .border-cfdd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.avatar_4f22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar_4f22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_2854 {
    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);
}

.hot_2854:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hot_2854 .chip_last_65dd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot_2854 .slow-02b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.card_31da {
    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);
}

.black-cff7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.black-cff7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hard_4996 {
    margin: 2rem 0;
}

.accordion_422e {
    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);
}

.accordion_422e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.highlight-1be6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-4113 {
    flex: 1;
}

.tertiary-tiny-de34 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button-gas-d10b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.panel-2666 {
    margin: 2rem 0;
}

.video_fluid_702f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_fluid_702f .modal-stone-a3be {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.video_fluid_702f .dirty-9107 {
    color: var(--text-gray);
    margin: 0;
}

.hero_a78a {
    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);
}

.hero_a78a .dim_773b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hidden-63b1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.grid-motion-e762 {
    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;
}

.hovered_c43d {
    flex: 1;
}

.progress-eb4d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.column-last-37d0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.notice-cd15 {
    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;
}

.modal-7048 {
    flex: 1;
}

.heading_d446 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.wood-fd13 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.footer_glass_8a72 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.frame_f976 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.sidebar-last-7958 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.sidebar-last-7958 .border-cfdd {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tooltip_fresh_7cc8 {
    margin-top: 2rem;
}

.tooltip_fresh_7cc8 .wood_47eb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.paragraph-d76c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in-0046 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in-0046 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-0046 .last_0647 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-3eb6 {
    margin: 2rem 0;
}

.thick_6ec8 {
    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 */
.paragraph_simple_27a0 {
    padding: var(--section-padding);
}

.carousel_plasma_39c8 {
    margin-top: 1rem;
}

.module-0bec {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.module-0bec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.module-0bec li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.green-9587 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-white-961c {
    margin: 2rem 0;
}

.alert_2970 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.text-dirty-3712 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.active_huge_aa40 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.shade_gold_477b {
    margin: 2rem 0;
}

.section-1f29 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.section-1f29 .active_active_1b4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_light_716b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .backdrop_light_716b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search_pro_5c97 {
    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);
}

.input-df54 {
    color: var(--text-white);
    font-weight: 600;
}

.pressed-835d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.table_glass_f921 {
    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);
}

.table_glass_f921 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tag-7618 {
    padding: var(--section-padding);
}

.wide-b65f {
    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;
}

.wide-b65f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.upper_378b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper_378b .yellow_0430 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_378b .button_pro_acb3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.chip-b2cb {
    flex: 1;
}

.left_26a2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.filter-115f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-115f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.filter-115f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gradient_steel_23f8 {
    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);
}

.gradient_steel_23f8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient_steel_23f8 strong {
    color: var(--warning-color);
}

/* Slots Section */
.dynamic-610f {
    padding: var(--section-padding);
}

.preview-solid-e68e {
    margin: 2rem 0;
}

/* Table Games Section */
.notification-d3cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_280e {
    margin: 2rem 0;
}

.input_89ec {
    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);
}

.input_89ec:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.input_89ec .widget_fd42 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_89ec .tertiary-inner-18b7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.list_2e4a {
    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);
}

.list_2e4a .dim_773b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.message-620d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-selected-803b {
    margin: 2rem 0;
}

.description-4d39 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_098a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh-51e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tiny_7ae5 {
    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);
}

.tiny_7ae5:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tiny_7ae5.fn-active-cf2c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough_0dfd {
    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);
}

.form_clean_1429 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_clean_1429 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.video-5b68 {
    padding: var(--section-padding);
}

.breadcrumb_gas_2792 {
    margin: 2rem 0;
}

.logo_wood_948d {
    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);
}

.logo_wood_948d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .logo_wood_948d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.aside-bright-8dd0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.small-df21 {
    flex: 1;
}

.dropdown_east_4f6a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.backdrop_3aea {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.list-0386 {
    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;
}

.tag_5b1d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.active-3d7c {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.aside_static_ac40 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown-8304 {
    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;
}

.dropdown-8304:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.component-8925 {
    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);
}

.secondary_orange_b4f8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary_orange_b4f8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.main_60b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-thick-db25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .column-thick-db25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-thick-db25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_silver_7dbb {
    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;
}

.row_silver_7dbb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal_e6a4 {
    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;
}

.simple-bf60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.main_7b55 {
    font-size: 2rem;
}

.pagination_cb58 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.cold_c359 {
    flex: 1;
}

.preview-out-a217 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.modal-642c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.icon-d7f9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.feature_east_2fb3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gold_fe3d {
    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;
}

.active-0929 {
    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;
}

.active-0929:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hovered-4ea3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_middle_be81 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.middle-abed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .middle-abed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper_628a {
    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);
}

.description_new_5711 {
    color: var(--text-white);
    font-weight: 600;
}

.block-simple-caa2 {
    color: var(--accent-color);
    font-weight: 600;
}

.detail-light-4867 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.detail-light-4867 strong {
    color: var(--accent-color);
}

/* Security Section */
.cool_c0c8 {
    padding: var(--section-padding);
}

/* Benefits Section */
.accordion-46c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.grid-5899 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.short-c68c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_mini_c162 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.secondary_264a {
    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) {
    .secondary_264a {
        flex-direction: column;
        gap: 1rem;
    }
}

.secondary_264a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary_264a .notice-cd15 {
    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;
}

.secondary_264a .modal-7048 {
    flex: 1;
}

.secondary_264a .heading_d446 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.secondary_264a .wood-fd13 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.photo-ccc4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-ccc4 .photo-cf7b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-ccc4 .pattern-7a3e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-ccc4 .pattern-7a3e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.photo-ccc4 .pattern-7a3e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.narrow_e61d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.disabled_wide_b1f5 {
    padding: var(--section-padding);
}

.in-67f4 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .in-67f4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-dirty-80fd {
    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);
}

.tabs-dirty-80fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tabs-dirty-80fd .section_mini_94cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-dirty-80fd .outline-clean-4b5d {
    flex: 1;
}

.tabs-dirty-80fd .medium-6fe9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs-dirty-80fd .focused_9d2c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.block_bronze_28ed {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_bronze_28ed .search_56ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_bronze_28ed .status-gold-5650 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.block_bronze_28ed .status-gold-5650 li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block_bronze_28ed .status-gold-5650 li:last-child {
    border-bottom: none;
}

.block_bronze_28ed .status-gold-5650 li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.block_bronze_28ed .status-gold-5650 li strong {
    color: var(--text-white);
}

.label-top-2d7a {
    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);
}

.label-top-2d7a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.label-top-2d7a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.component-4461 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-5149 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .media-5149 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light_eab2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.light_eab2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal-basic-36ec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_pro_ff0f {
    font-size: 2rem;
}

.shadow-8dff {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.center_3ae8 {
    flex: 1;
}

.breadcrumb-simple-63ef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-simple-63ef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-simple-63ef li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.lower_24ce {
    margin-top: 3rem;
}

.mask_59d5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.yellow-4c15 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module-47c4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-47c4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.module-47c4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.module-47c4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.focused_32c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_92df {
    margin: 2rem 0;
}

.menu_7a5f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.menu_7a5f .active_active_1b4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_76a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .plasma_76a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pressed-f2ca {
    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);
}

.pressed-f2ca:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dropdown-a687 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.component-446c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.widget-9728 {
    padding: var(--section-padding);
}

.feature-32e0 {
    margin: 2rem 0;
}

.active-3c25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .active-3c25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-3c25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge_169f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.huge_169f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.thick_3459 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tall_b5d6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.copper-49b6 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.copper-49b6.paragraph-d508 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.stale_3aea {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.message-center-6054 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.yellow-69fc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-bottom-96ed {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stone-57de {
    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);
}

.stone-57de p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stone-57de strong {
    color: var(--accent-color);
}

/* Update Log Section */
.card-liquid-d4ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_bottom_368b {
    margin: 2rem 0;
}

.link_9f77 {
    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) {
    .link_9f77 {
        flex-direction: column;
        gap: 1rem;
    }
}

.link_9f77:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link_9f77::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);
}

.action-9a0e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.icon_14b5 {
    flex: 1;
}

.black-6131 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.grid_abc2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_abc2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-medium-4104 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_dim_7160 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info_black_d5fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .info_black_d5fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm-7002 {
    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);
}

.main_black_579e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glass-577d {
    flex: 1;
}

.box_new_16d7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.preview-4da6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.photo_east_4f2c {
    margin-top: 2rem;
    text-align: center;
}

.first_b34e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.first_b34e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.background_fixed_8dbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_fixed_8dbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_lower_b5ec {
    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);
}

.primary_lower_b5ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.primary_lower_b5ec .background_bd69 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_lower_b5ec .middle-d42c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.primary_lower_b5ec .tabs_282e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.primary_lower_b5ec .module_dc04 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.info-dd05 {
    padding: var(--section-padding);
}

.widget_1e4c .up_8fe9 {
    flex: 1;
}

/* Promo Calendar Section */
.heading-ec29 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze-2bd8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-2bd8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_a47c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic_5b8f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.logo-middle-4e9b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_af26 {
    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);
}

.dropdown_wood_6784 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.copper-46b0 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.block_fresh_7e62 {
    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);
}

.block_fresh_7e62 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_fresh_7e62 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.layout_f4bc {
    padding: var(--section-padding);
}

.avatar_hard_c8fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar_hard_c8fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blue-593b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-f6b3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_warm_c914 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion_warm_c914 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-0e1c {
    margin-top: 3rem;
}

.bottom-0e1c .mask_59d5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.bottom-0e1c .yellow-4c15 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bottom-0e1c .module-47c4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bottom-0e1c .module-47c4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.bottom-0e1c .module-47c4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.bottom-0e1c .module-47c4 li strong {
    color: var(--warning-color);
}

.brown_1b00 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown_1b00 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.item_cold_8315 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-under-7332 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-under-7332 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_lite_2741 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_lite_2741 .active_active_1b4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.content_static_53c3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.component_fluid_efb0 {
    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);
}

.component_fluid_efb0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.row-mini-181e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-67f3 {
    flex: 1;
}

.container-inner-10fa {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.thumbnail-e928 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dim_fc98 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.current_8f0f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.west-ec6d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .west-ec6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-stone-fe20 {
    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);
}

.form-stone-fe20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table_lower_6088 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_9b15 {
    color: var(--text-gray);
    font-size: 1rem;
}

.chip_228a {
    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);
}

.center-fd0c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.center-fd0c strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.black-eb0c { 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; }
.bronze-c5b3, .breadcrumb-motion-4239 { max-width:100%; height:auto; }

.hot-e351, .logo-41bd, .black_ceeb { white-space:normal; }

.easy-8f3a,
.pagination_1d77,
.gas-fb63,
.background_fixed_8dbc,
.panel-2666,
.gradient-96db {
  flex-wrap:wrap;
}

[class*="grid"],
.west-ec6d,
.active-3c25,
.sidebar-focused-829e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.mini-1d1e img,
.pagination_1d77 img,
.pattern-72c7 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.sort_east_e098, .primary-down-059c,
.surface_7b91, .pro-f6a6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.nav_down_67da { width:100%; overflow-x:auto; }
.nav_down_67da table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.static-3b32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .static-3b32 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.detail-785d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.north_a8e3,
.image-steel-1586,
.progress_00d4,
.gradient_full_4e89,
.smooth-384e,
.west-ec6d,
.active-3c25,
.sidebar-focused-829e,
.active_9f73,
.breadcrumb_gas_2792,
.static-3b32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .north_a8e3,
  .image-steel-1586,
  .progress_00d4,
  .gradient_full_4e89,
  .smooth-384e,
  .west-ec6d,
  .active-3c25,
  .sidebar-focused-829e,
  .active_9f73,
  .breadcrumb_gas_2792,
  .static-3b32 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tooltip-78cc,
.filter-smooth-3d35,
.form-stone-fe20,
.wrapper-7a5e,
.huge_169f,
.outer-d9f3,
.logo_wood_948d,
.detail-785d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.grid-1b7b,
.gradient_4810,
.caption_7d55 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid-1b7b > *,
.gradient_4810 > *,
.caption_7d55 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a4e0 */
.shadow-element-q7 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
