/* {$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;
}

.upper-96f1 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.border_outer_4937 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .border_outer_4937 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .border_outer_4937 {
        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 */
.avatar-188e {
    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);
}

.block-0235 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .block-0235 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .short-2199 {
        grid-column: 1;
    }
    
    .media-c58b {
        grid-column: 2;
    }
    
    .hero-pro-68dd {
        grid-column: 3;
    }
}

.short-2199 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.short-2199:hover img {
    transform: scale(1.05);
}

/* Navigation */
.action_fdbc {
    display: none;
}

@media (min-width: 1024px) {
    .action_fdbc {
        display: block;
    }
}

/* Grouped Navigation */
.tall_e3c4 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.middle-844e {
    position: relative;
}

.west_cf2c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.middle-844e .list_tiny_0378 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.list_tiny_0378 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.preview_b55b {
    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;
}

.preview_b55b:hover,
.preview_b55b.fn-active-8125 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.motion-4b8a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .motion-4b8a {
        display: flex;
    }
}

/* Mobile Register Button */
.media-c58b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .media-c58b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.container_simple_428a {
    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;
}

.container_simple_428a::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 */
.hero-pro-68dd {
    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) {
    .hero-pro-68dd {
        display: none;
    }
}

.hero-pro-68dd span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hero-pro-68dd.fn-active-8125 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hero-pro-68dd.fn-active-8125 span:nth-child(2) {
    opacity: 0;
}

.hero-pro-68dd.fn-active-8125 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.status_full_4941 {
    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;
}

.status_full_4941.fn-active-8125 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.feature-yellow-1978 {
    overflow: hidden;
}

.table_south_2aef {
    list-style: none;
    padding: 0.75rem 0;
}

.item-fresh-4c35 {
    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;
}

.item-fresh-4c35:hover,
.item-fresh-4c35.fn-active-8125 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.item-fresh-4c35.next_5b00 {
    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;
}

.item-fresh-4c35.next_5b00::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 */
.list-174b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.tiny-1279 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tiny-1279:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.wood-3ee4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.wood-3ee4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.feature_stone_c284 {
    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;
}

.feature_stone_c284:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.iron_3561 {
    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;
}

.slider_f0d2 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.slider_f0d2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sidebar-red-4b45 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sidebar-red-4b45:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.secondary_complex_595c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.secondary_complex_595c: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);
}

.notice-3a15 {
    font-size: 1em;
    font-weight: 700;
}

.banner-paper-5969 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dim_d69d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dim_d69d::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;
}

.old_0233 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .old_0233 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.chip_medium_2ce9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.next-5691 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.wood-e58d {
    margin-bottom: 2rem;
}

.background_liquid_42cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .background_liquid_42cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-7046 {
    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);
}

.middle-50a2 {
    font-size: 1.5rem;
}

.summary-medium-9d6a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.easy_4c75 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail_450a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.thumbnail_450a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gradient-left-5255 {
    text-align: center;
    margin-bottom: 3rem;
}

.silver-bcef {
    margin-bottom: 1rem;
}

.pagination-4277 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.dim-e4a8 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dim-e4a8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .dim-e4a8.in-71fa {
        direction: rtl;
    }
    
    .dim-e4a8.in-71fa > * {
        direction: ltr;
    }
}

.tabs_clean_fd19 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tabs_clean_fd19:first-child {
    margin-top: 0;
}

.thick_a91e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mask_d993 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask_d993:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.carousel-right-4f87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-right-4f87 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-c23f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-f395 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.new-f343 {
    list-style: none;
}

.new-f343 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-f343 li:last-child {
    border-bottom: none;
}

/* Games Features */
.label_c3a2 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.simple_a49e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.media-iron-4ad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.column_64ff {
    margin: 2rem 0;
}

.gradient_slow_beb1 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.black-b854 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.thumbnail-19f3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pagination-ffff {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.detail-tiny-f12b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-tiny-f12b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_7954 {
    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);
}

.menu_7954:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview-7fd6 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.simple-8ed6 {
    font-size: 1.5rem;
}

.mask_d3ac {
    color: var(--accent-color);
    margin: 0;
}

.picture-6a72 {
    list-style: none;
}

.picture-6a72 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture-6a72 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.element-ba29 {
    margin: 2rem 0;
}

.video-566e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.preview_rough_4df6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .preview_rough_4df6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-inner-5c31 {
    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);
}

.detail-288b {
    font-size: 1.25rem;
}

.liquid_0ead {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.notice-dynamic-0d8a,
.header_fc5a {
    text-align: center;
    margin: 2rem 0;
}

.east_59a3,
.hidden-pro-becd {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.background-8c73 {
    margin: 2rem 0;
    text-align: center;
}

.grid-1362 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grid-1362::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;
}

.center_a15a {
    position: relative;
    z-index: 1;
}

.inner_46a5 {
    margin-bottom: 1rem;
}

.wide_f25a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text_e83f {
    margin-bottom: 3rem;
}

.active_mini_3c51 {
    margin-top: 3rem;
}

.block_91dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .block_91dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_91dc .sort-7046 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.image-in-8d15 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-bright-e6cc {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.footer_copper_4428 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.shadow_3ce8 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .shadow_3ce8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_3ce8 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.backdrop_483c {
    margin-bottom: 1rem;
}

.button-yellow-8152 img {
    margin-bottom: 1rem;
}

.layout_motion_6a73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_5444 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.message-slow-3771 {
    list-style: none;
}

.message-slow-3771 li {
    margin-bottom: 0.5rem;
}

.message-slow-3771 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.message-slow-3771 a:hover {
    color: var(--accent-color);
}

.hero_medium_0564 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-selected-9db1 {
    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);
}

.modal-selected-9db1:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.main-09af {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.main-09af p {
    margin-bottom: 0.25rem;
}

.motion-0cca {
    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) {
    .motion-0cca {
        flex-direction: row;
    }
}

.green-0dd8 {
    text-align: center;
}

@media (min-width: 768px) {
    .green-0dd8 {
        text-align: left;
    }
}

.green-0dd8 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout_08bf {
    font-size: 0.75rem !important;
}

.message_6184 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tertiary-plasma-fe17 {
    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);
    }
}

.sort-liquid-831e {
    animation: fadeInUp 0.6s ease-out;
}

.photo-a72c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.widget-glass-e0a5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-glass-e0a5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.tabs_90e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_90e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-9c04 {
    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);
}

.link-9c04 .media-iron-4ad1 {
    font-size: 1.25rem;
}

.link-9c04 .primary-hard-57a4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.iron_c4cb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .iron_c4cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-3461 {
    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);
}

.sort-3461:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight_hard_471d {
    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);
}

.info-full-3ecd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb_clean_b02b {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_5c8c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption_wood_50cd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_wood_50cd .gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption_wood_50cd .new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_8995 {
    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);
}

.fixed-ffbd {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.fixed-ffbd img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.fixed-ffbd img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.element_91c5 {
    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);
}

.lite-a471 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list_warm_4b4b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list_warm_4b4b label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.list_warm_4b4b 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);
}

.list_warm_4b4b input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.list_warm_4b4b input::placeholder {
    color: var(--text-muted);
}

.pink_4178 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-dim-cce1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.detail-dim-cce1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.selected_97ad {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.selected_97ad:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.preview_rough_4df6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_rough_4df6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-inner-5c31 {
    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);
}

.wrapper-inner-5c31 .detail-288b {
    font-size: 1.25rem;
}

.wrapper-inner-5c31 .liquid_0ead {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.box_easy_a1cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_dirty_330d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_dirty_330d .media-iron-4ad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_dirty_330d .gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_dirty_330d .new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_3ee6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-0733 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-0733 .white-069a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-0733 .container-4ef3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-ed0c {
    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);
}

.pagination-0434 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination-0434 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-98e5 {
    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);
}

.slow-98e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_static_db97 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.steel-e3e0 {
    flex: 1;
}

.pro-f096 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_8655 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.static-e1c5 {
    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);
}

.static-e1c5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.over-4f53 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over-4f53 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_36cb {
    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_36cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-silver-1b5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_2aba {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.purple-fff8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.right-5388 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.brown-7740 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_f7af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_dcf7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.large_dcf7 .carousel-under-eae8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.large_dcf7 .backdrop_dirty_41f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-first-5b6f {
    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);
}

.gradient-7485 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick-604a {
    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);
}

.thick-604a .media-iron-4ad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick-604a .gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thick-604a .new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_4ba2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_4ba2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused_9e52 {
    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);
}

.focused_9e52:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.label-6f24 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-6f24 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-56ff {
    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);
}

.modal-56ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-blue-b07f {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-warm-3222 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.black-b854 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.focus-white-5c19 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.hot_6056 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_b953 {
    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);
}

.slider_b953:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_2327 {
    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);
}

.list-over-b0eb {
    flex: 1;
}

.texture-af47 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tall_f3d6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.next_e9fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_fresh_1b44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_789f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_789f .white-069a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_789f .container-4ef3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_fc5a {
    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);
}

.video_wide_48a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_wide_48a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.button-north-48d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-north-48d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_warm_08e3 {
    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_warm_08e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide-d855 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green-f517 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight_dbf9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column-0921 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border_17ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_07ca {
    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);
}

.outline_first_0a7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-4d3d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover_989d {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-7485 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick-604a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.thick-604a .gradient_c42f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thick-604a .new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_b1cf {
    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);
}

.tiny-6676 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tiny-6676 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiny-6676 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-c9e3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focus-c9e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-33e3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_8fcb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed-4e40 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gallery-paper-d578 {
    padding: 1.5rem;
}

.search_d349 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.current-1dcb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-1dcb 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;
}

.current-1dcb li:last-child {
    border-bottom: none;
}

.current-1dcb li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.container-wood-29d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-wood-29d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-clean-2555 {
    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);
}

.list-clean-2555:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-fixed-5d16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-down-8167 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new-0612 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column-stone-efb8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-061d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_f7b2 {
    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);
}

.component-0185 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas_3d08 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-9687 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_28fe {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover_05a8 {
    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);
}

.banner-outer-ac3e {
    text-align: center;
}

.hard_665a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.complex-005b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over_a6f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_fc18 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_fc18 .gradient_c42f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_fc18 .new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood-fe57 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wood-fe57 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wood-fe57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark_f29e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dark_f29e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_e026 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_269b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient_c42f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.wide_c08a {
    padding: 1.5rem;
}

.new_2993 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.title_b3fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title_b3fd 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;
}

.title_b3fd li:last-child {
    border-bottom: none;
}

.title_b3fd li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.chip_0f3c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stale-8a89 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stale-8a89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_db38 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-3b77 {
    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);
}

.highlight_hard_471d {
    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;
}

.info-full-3ecd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_clean_b02b {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_90f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-d6dd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.large_3847 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_east_d78b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.message-selected-e6cc {
    display: flex;
    gap: 1rem;
}

.message-selected-e6cc .component-over-6806 {
    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;
}

.glass_9a45 {
    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);
}

.shadow-0be1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture-bright-2c9b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture-bright-2c9b 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;
}

.texture-bright-2c9b li:last-child {
    border-bottom: none;
}

.texture-bright-2c9b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.paper_19d3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paper_19d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paper_19d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-light-afe5 {
    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-light-afe5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_723c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_0e22 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.carousel-under-eae8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slow_e0fd {
    font-size: 1rem;
}

.item-mini-cc0e {
    padding: 1.5rem;
}

.backdrop_dirty_41f8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.message-a397 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.message-a397 .banner-outer-ac3e {
    text-align: center;
}

.message-a397 .complex-005b {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.message-a397 .column_bright_db22 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.simple_cbc3 {
    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);
}

.simple_cbc3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.alert-pressed-89a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-pressed-89a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-a76a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview-a76a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-fe5f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_ee3d {
    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);
}

.middle-49da {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_1e1b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header-8e88 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_f5a2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.in_3294 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown_4667 {
    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);
}

.basic-381e {
    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;
}

.basic-381e.alert-hovered-091c {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.basic-381e.motion_96eb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.basic-381e.hero_basic_b576 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.basic-381e.action-306f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.basic-381e.grid-huge-73d4 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.backdrop_prev_8734 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.copper-c6d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old-5ef4 {
    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);
}

.background_hard_d07c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner_3ee6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_3ee6 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;
}

.banner_3ee6 li:last-child {
    border-bottom: none;
}

.banner_3ee6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.brown-7a1f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .brown-7a1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown-7a1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-c96b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.medium-c96b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium-c96b.focused-1c86 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .medium-c96b.focused-1c86 {
        grid-column: span 3;
    }
}

.wrapper_9ef0 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.medium-c96b.focused-1c86 .wrapper_9ef0 {
    background: rgba(6, 182, 212, 0.1);
}

.stone_a34f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.column_yellow_d0e3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.medium-c96b.focused-1c86 .column_yellow_d0e3 {
    color: var(--info-color);
}

.container-8ba5 {
    padding: 1.5rem;
    text-align: center;
}

.pagination_24be {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.medium-c96b.focused-1c86 .pagination_24be {
    color: var(--info-color);
}

.sort-c7e3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stone_3b5c {
    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 */
.chip_simple_acf5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_simple_acf5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_copper_6ab8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture_copper_6ab8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-87f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_dirty_330d {
    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);
}

.detail-288b {
    font-size: 2rem;
    flex-shrink: 0;
}

.clean-1959 {
    flex: 1;
}

.video-566e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_594f {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_right_3988 {
    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);
}

.main_up_b054 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list_a761 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tertiary-plasma-fe17 {
    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);
}

.grid_b95a {
  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);
}

.grid_b95a .banner-outer-ac3e {
    text-align: center;
}

.grid_b95a .hard_665a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.grid_b95a .complex-005b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu_2e5b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-8f08 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_9d01 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-417f {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_316f {
    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);
}

.primary_mini_44dc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-iron-a335 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro-45b9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pro-45b9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pro-45b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_cb2c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card_cb2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_bright_8dc4 {
    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);
}

.smooth-1484 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gold-3258 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tertiary-easy-dad0 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tertiary-easy-dad0.north_4d6f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary-easy-dad0.label_dc81 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tertiary-easy-dad0.table-9be5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.orange_e8bc {
    padding: 1.5rem;
    text-align: center;
}

.tertiary_wood_193b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background-bfbf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background-bfbf .solid_179f {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.new_09c4 {
    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);
}

.new_09c4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.popup_a76d {
  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);
}

.small_e70c {
    text-align: center;
}

.small_e70c .hard_665a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.small_e70c .complex-005b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.hard-3545 { text-align: center; }
.column-first-4c6f { text-align: left; }
.layout_58ae { text-align: right; }

.secondary_2634 { margin-bottom: 0; }
.grid-new-c269 { margin-bottom: 0.5rem; }
.in_5bb3 { margin-bottom: 1rem; }
.filter_yellow_4679 { margin-bottom: 1.5rem; }
.green_4631 { margin-bottom: 2rem; }

.carousel-0731 { margin-top: 0; }
.badge-2170 { margin-top: 0.5rem; }
.filter-last-83af { margin-top: 1rem; }
.list_8cea { margin-top: 1.5rem; }
.slider-stale-e22a { margin-top: 2rem; }

.fn-hidden-8125 { display: none; }
.fn-visible-8125 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dim_d69d {
        padding: 6rem 0 3rem;
    }
    
    .old_0233 {
        text-align: center;
    }
    
    .dim-e4a8 {
        text-align: center;
    }
    
    .background_liquid_42cf {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .avatar-188e,
    .status_full_4941,
    .grid-1362,
    .footer_copper_4428 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dim_d69d {
        background: none;
    }
}

/* Providers Section */
.primary_yellow_28e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-d164 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old-d164 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old-d164 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-a6fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-a6fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button-simple-b5a1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tabs_copper_b471 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.border_7649 {
    list-style: none;
    padding: 0;
}

.border_7649 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.border_7649 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.card-under-d5a4 {
    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);
}

.card-under-d5a4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.picture_5068 {
    padding: var(--section-padding);
}

.text_cool_4109 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_cool_4109 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold_093f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold_093f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.status_3baa {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.fixed-7b44 {
    display: flex;
    flex-direction: column;
}

.input-west-5761 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.paragraph-out-a7a8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer_large_bbf8 {
    color: var(--accent-color);
}

.texture-upper-b52a {
    font-size: 1.25rem;
}

.out_dddc {
    margin-bottom: 1rem;
}

.out_dddc p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.focus_fluid_5ce6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gradient_dim_6d68 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.banner-outer-ac3e {
    text-align: center;
}

.hard_665a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.complex-005b {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.bronze_bc3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_e762 {
    margin: 2rem 0;
}

.form-focused-4fbf {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.form-focused-4fbf .media-iron-4ad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-31a9 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pattern_045c {
    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;
}

.pattern_045c:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wide_2d50 {
    font-size: 2rem;
}

.filter_medium_6efd {
    display: flex;
    flex-direction: column;
}

.easy_fd0a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.badge_fe2d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.current-6b61 {
    padding: var(--section-padding);
}

.list_stone_18bc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_stone_18bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_stone_18bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_acb6 {
    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);
}

.filter_acb6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_acb6 .hard_665a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.filter_acb6 .complex-005b {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.filter_acb6 .top-8634 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.pattern_simple_c574 {
    margin-top: 4rem;
}

.shade_33e9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.pagination-black-dc7a {
    overflow-x: auto;
}

.hero_blue_3639 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero_blue_3639 thead {
    background: var(--accent-color);
}

.hero_blue_3639 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.hero_blue_3639 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_blue_3639 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.hero_blue_3639 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.advanced-72ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-834d {
    max-width: 900px;
    margin: 0 auto;
}

.column_focused_42bc {
    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);
}

.column_focused_42bc:hover {
    border-color: var(--accent-color);
}

.active_be4a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.active_be4a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.status_3119 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.column_focused_42bc.fn-active-8125 .status_3119 {
    transform: rotate(45deg);
}

.bottom_5ad8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.column_focused_42bc.fn-active-8125 .bottom_5ad8 {
    max-height: 1000px;
}

.bottom_5ad8 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.progress-last-3e58 {
    padding: var(--section-padding);
}

.fixed-ffbd {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.panel_warm_0118 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-a2be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-a2be {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plasma-5547 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_617d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav_advanced_8c86 {
    font-size: 2rem;
}

.out_7f81 {
    color: var(--text-white);
    margin: 0;
}

.table_9a09 {
    list-style: none;
    padding: 0;
}

.table_9a09 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_9a09 li:last-child {
    border-bottom: none;
}

.secondary_upper_9df1 {
    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);
}

.secondary_upper_9df1 p {
    color: var(--success-color);
    margin: 0;
}

.column-steel-1f17 {
    margin-top: 3rem;
}

.shadow-0be1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tertiary_6828 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary_6828 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_d9f7 {
    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);
}

.item_middle_507f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus_d9f7 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.video-paper-d787 {
    padding: var(--section-padding);
}

.image_dynamic_c3cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_dynamic_c3cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide-0ac2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wide-0ac2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.thumbnail-fixed-1b4e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.main-hovered-c77b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.grid-8636 {
    flex: 1;
}

.header_out_bcb8 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.header-smooth-1612 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.large-9a56 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-4155 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas-4155:last-child {
    border-bottom: none;
}

/* Comparison Section */
.primary_small_5078 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.label-blue-86ac {
    padding: var(--section-padding);
}

.layout-e9b5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.media_advanced_6be4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_advanced_6be4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight_center_2990 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-6ebd, .thumbnail_middle_7011, .bright-7c45 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.bright-7c45 {
    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 */
.accent_clean_5f88 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-52ab {
    margin: 2rem 0;
}

.black-8c54 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-d20f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.silver-07f2 {
    list-style: none;
    padding: 0;
}

.silver-07f2 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;
}

.silver-07f2 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.silver-07f2 li:last-child {
    border-bottom: none;
}

.dim-9761 {
    text-align: center;
    margin-top: 2rem;
}

.media_2d2c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.border-e3fa {
    padding: var(--section-padding);
}

.accent_gas_9b26 {
    margin: 2rem 0;
}

.panel_pressed_c96b {
    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) {
    .panel_pressed_c96b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.panel_pressed_c96b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_upper_abe3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.component_bfe8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.title-0953 {
    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;
}

.hard-3e2a {
    flex: 1;
}

.label_3466 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notice_dim_7e27 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header_2818 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.huge-76a4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .huge-76a4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.basic-8516 {
    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);
}

.basic-8516:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.basic-8516 .hard_665a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.basic-8516 .complex-005b {
    color: var(--text-gray);
    font-size: 1rem;
}

.tiny-a081 {
    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);
}

.backdrop-fluid-dd03 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.backdrop-fluid-dd03 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.outer-4b5e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .outer-4b5e {
        grid-template-columns: 1fr 1fr;
    }
}

.hard-0fa3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-9b78 {
    margin-bottom: 1.5rem;
}

.content-9b78 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.content-9b78 input,
.content-9b78 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;
}

.content-9b78 input:focus,
.content-9b78 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.simple-5a8a {
    width: 100%;
    margin-top: 1rem;
}

.module-upper-c9f6 {
    display: flex;
    align-items: center;
}

.tertiary-over-048c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.gradient_motion_c565 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.progress-279b {
    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;
}

.feature-ec16 {
    color: var(--text-gray);
}

.box-hard-cc4d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.huge-682d {
    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);
}

.huge-682d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.popup_cool_7b9a {
    margin-top: 3rem;
}

.gradient_335e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.chip-wood-09a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over-eea4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.caption_cool_ed9b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption_cool_ed9b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.wrapper_basic_6018 {
    padding: var(--section-padding);
}

.info_new_817f {
    margin: 2rem 0;
}

.motion_2ea7 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.element-fixed-6281 {
    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;
}

.element-fixed-6281:hover, .element-fixed-6281.fn-active-8125 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.list-left-ed34 {
    display: none;
}

.list-left-ed34.fn-active-8125 {
    display: block;
}

.progress-fresh-d503 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_c852 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-61eb h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.border-61eb ul {
    list-style: none;
    padding: 0;
}

.border-61eb ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.border-61eb ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.chip_4afa {
    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 */
.banner_green_ae35 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-up-6d0c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-rough-32f8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.column_huge_cc16 {
    color: var(--accent-color);
    margin: 0;
}

.heading_6110 {
    display: flex;
    gap: 1.5rem;
}

.status-7d27 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.old_f3e7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.right-e7ec {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.right-e7ec.fluid-80e2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.right-e7ec.sidebar_07fd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.right-e7ec.copper_f2f9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hard-ce3e {
    margin-top: 2rem;
}

.button-stale-21ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fresh_901d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .fresh_901d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-18b9 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.column_cool_0e5e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.current-7d3c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.frame_east_a4a7 {
    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 */
.active_617a {
    padding: var(--section-padding);
}

.frame-b085 {
    margin: 2rem 0;
}

.cool-1587 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.menu-copper-1cd0 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.title_2899 {
    list-style: none;
    padding: 0;
}

.title_2899 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;
}

.title_2899 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.title_2899 li:last-child {
    border-bottom: none;
}

.caption-small-212a {
    margin: 2rem 0;
}

.simple_1207 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero_b82f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero_b82f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.copper_dd84 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-static-15d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thick-3c26 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dirty-eef0 {
    margin-top: 2rem;
}

.pro-f096 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.advanced_7186 {
    list-style: none;
    padding: 0;
}

.mini-9ce5 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.mini-9ce5 a {
    color: var(--accent-color);
    text-decoration: none;
}

.mini-9ce5 a:hover {
    text-decoration: underline;
}

.accent_tall_55e4 {
    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 */
.content-selected-db9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-6e30 {
    margin: 2rem 0;
}

.backdrop-active-7928 {
    margin-bottom: 3rem;
}

.backdrop-active-7928 .label-d20f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.primary_pink_a2c8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail_d8ba {
    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);
}

.detail_d8ba:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.frame-focused-1f5c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .frame-focused-1f5c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_gas_541d {
    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 */
.sidebar-fixed-6a57 {
    padding: var(--section-padding);
}

.middle-697e {
    margin: 2rem 0;
}

.footer_dirty_09d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.table_8a46 {
    overflow-x: auto;
    margin: 2rem 0;
}

.iron-9d5d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.label_bb53 {
    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;
}

.column-advanced-00c9 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.breadcrumb_out_5ff0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .breadcrumb_out_5ff0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim-e191 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-e191 .media-iron-4ad1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.dim-e191 .gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden-hard-6b72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.block_lite_58d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-909f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-909f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected-6975 {
    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;
}

.selected-6975:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.paragraph-da44 {
    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);
}

.selected-c56e {
    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;
}

.nav_451d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask-orange-f229 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.layout_4ee2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.container-5680 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-mini-4c4d {
    color: var(--text-white);
    font-weight: 600;
}

.large_f6d5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.center_643e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.center_643e .component-over-6806 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bronze_db75 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze_db75 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_948c {
    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);
}

.glass_948c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.glass_948c .hard_665a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.glass_948c .complex-005b {
    color: var(--text-gray);
    font-size: 1rem;
}

.thick_1391 {
    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-1a01 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.center-1a01 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.border_17ef {
    margin: 2rem 0;
}

.border_07ca {
    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);
}

.border_07ca:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.outline_first_0a7f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dirty_a65d {
    flex: 1;
}

.media-4d3d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover_989d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gradient-7485 {
    margin: 2rem 0;
}

.thick-604a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-604a .gradient_c42f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.thick-604a .new_2993 {
    color: var(--text-gray);
    margin: 0;
}

.main_b1cf {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.main_b1cf .east_59a3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hidden-hard-6b72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.active_2327 {
    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;
}

.list-over-b0eb {
    flex: 1;
}

.tall_f3d6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.next_e9fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.highlight_hard_471d {
    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;
}

.item_dc16 {
    flex: 1;
}

.info-full-3ecd {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.breadcrumb_clean_b02b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.large_3847 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.summary_east_d78b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.message-selected-e6cc {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.message-selected-e6cc .component-over-6806 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.glass_9a45 {
    margin-top: 2rem;
}

.glass_9a45 .shadow-0be1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.tag_c591 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_05a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hover_05a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_05a8 .banner-outer-ac3e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_a6f0 {
    margin: 2rem 0;
}

.panel_fc18 {
    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_2f1f {
    padding: var(--section-padding);
}

.wide_c08a {
    margin-top: 1rem;
}

.title_b3fd {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.title_b3fd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.title_b3fd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.tag_bright_975a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-pressed-a072 {
    margin: 2rem 0;
}

.list-dim-d0f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.input_lower_1a5c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-8b56 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.out_3e34 {
    margin: 2rem 0;
}

.header_22b8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.header_22b8 .label-d20f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_c58b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .preview_c58b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.banner_down_87b8 {
    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);
}

.text_ab8f {
    color: var(--text-white);
    font-weight: 600;
}

.detail-0bbd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.lower_ae9b {
    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);
}

.lower_ae9b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.logo-upper-842f {
    padding: var(--section-padding);
}

.container-blue-d7a5 {
    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;
}

.container-blue-d7a5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.north_0a00 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north_0a00 .item_middle_507f {
    font-size: 2rem;
    flex-shrink: 0;
}

.north_0a00 .texture_835d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.sidebar_solid_9d8c {
    flex: 1;
}

.border_next_18c6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.chip_inner_6f93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip_inner_6f93 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.chip_inner_6f93 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.module_a1cb {
    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);
}

.module_a1cb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_a1cb strong {
    color: var(--warning-color);
}

/* Slots Section */
.border-center-f6d5 {
    padding: var(--section-padding);
}

.brown-7740 {
    margin: 2rem 0;
}

/* Table Games Section */
.pagination-action-b918 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_f7af {
    margin: 2rem 0;
}

.large_dcf7 {
    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);
}

.large_dcf7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.large_dcf7 .carousel-under-eae8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.large_dcf7 .backdrop_dirty_41f8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.row-first-5b6f {
    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);
}

.row-first-5b6f .east_59a3 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.right_8aff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner_1851 {
    margin: 2rem 0;
}

.gradient_simple_8329 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-soft-4670 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused-51d8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_active_ec61 {
    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);
}

.video_active_ec61:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.video_active_ec61.fn-active-8125 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south_deaf {
    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);
}

.overlay_2204 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_2204 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.orange-7898 {
    padding: var(--section-padding);
}

.steel_4793 {
    margin: 2rem 0;
}

.column-2e94 {
    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);
}

.column-2e94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .column-2e94 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mini-f08b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.highlight-static-abe5 {
    flex: 1;
}

.active-de58 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.content_071e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slider-south-a880 {
    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;
}

.notification_ae2d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.first-d004 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thumbnail-c881 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.west-40e9 {
    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;
}

.west-40e9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article_8682 {
    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);
}

.pressed_3371 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pressed_3371 strong {
    color: var(--accent-color);
}

/* New Games Section */
.description-6b17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-soft-d940 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary-soft-d940 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary-soft-d940 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old_8aed {
    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;
}

.old_8aed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination-764d {
    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;
}

.out-c921 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.content_8f6a {
    font-size: 2rem;
}

.out-5f35 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.left-376a {
    flex: 1;
}

.tertiary-right-3750 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.tertiary-3d1e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.highlight-east-e748 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.main_8b24 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.icon_narrow_c041 {
    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;
}

.tooltip-full-4c14 {
    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;
}

.tooltip-full-4c14:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.preview-small-98dd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_dynamic_f9ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-3f34 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hard-3f34 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_2f64 {
    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);
}

.column_warm_d827 {
    color: var(--text-white);
    font-weight: 600;
}

.middle-770b {
    color: var(--accent-color);
    font-weight: 600;
}

.progress_02f3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.progress_02f3 strong {
    color: var(--accent-color);
}

/* Security Section */
.main_164d {
    padding: var(--section-padding);
}

/* Benefits Section */
.accent_10ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.narrow-5ab0 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.media-fresh-e96e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_0414 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.description_2905 {
    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) {
    .description_2905 {
        flex-direction: column;
        gap: 1rem;
    }
}

.description_2905:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description_2905 .highlight_hard_471d {
    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;
}

.description_2905 .item_dc16 {
    flex: 1;
}

.description_2905 .info-full-3ecd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.description_2905 .breadcrumb_clean_b02b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.blue-86a4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue-86a4 .video-566e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue-86a4 .box_easy_a1cb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue-86a4 .box_easy_a1cb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.blue-86a4 .box_easy_a1cb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border-solid-1121 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.card_9268 {
    padding: var(--section-padding);
}

.stale_c837 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stale_c837 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-outer-9285 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block-outer-9285:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.block-outer-9285 .table_bf4d {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-outer-9285 .element-fixed-d886 {
    flex: 1;
}

.block-outer-9285 .white-069a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-outer-9285 .column-in-9b72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.prev_42ba {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.prev_42ba .carousel_bf9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev_42ba .wrapper-green-a46c {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.prev_42ba .wrapper-green-a46c 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);
}

.prev_42ba .wrapper-green-a46c li:last-child {
    border-bottom: none;
}

.prev_42ba .wrapper-green-a46c 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;
}

.prev_42ba .wrapper-green-a46c li strong {
    color: var(--text-white);
}

.header_action_34dc {
    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);
}

.header_action_34dc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_action_34dc strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hover_95c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_huge_fba8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input_huge_fba8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box-dirty-04ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-dirty-04ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hovered_4d26 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.black-8e20 {
    font-size: 2rem;
}

.notification-b45a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.text-pro-cee6 {
    flex: 1;
}

.mini_1fa3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini_1fa3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mini_1fa3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.rough-baa8 {
    margin-top: 3rem;
}

.cool-1587 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.menu-copper-1cd0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title_2899 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title_2899 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.title_2899 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.title_2899 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shadow_orange_6647 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-643a {
    margin: 2rem 0;
}

.container-in-36a6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.container-in-36a6 .label-d20f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-19b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled-19b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-gas-ce91 {
    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);
}

.button-gas-ce91:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.thumbnail_cool_50db {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.primary_full_ac13 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.smooth-03f3 {
    padding: var(--section-padding);
}

.section-out-1f60 {
    margin: 2rem 0;
}

.center-18b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .center-18b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .center-18b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_static_c031 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_static_c031:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.stale_49c9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.info_fa66 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.video-slow-78b1 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-slow-78b1.background-selected-8c94 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.row_9d6e {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.north_8299 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.heading-175f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button_06aa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice-3391 {
    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);
}

.notice-3391 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice-3391 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.purple-e574 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper-a4b0 {
    margin: 2rem 0;
}

.message_b49e {
    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) {
    .message_b49e {
        flex-direction: column;
        gap: 1rem;
    }
}

.message_b49e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_b49e::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);
}

.gas-6091 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.pink-76a8 {
    flex: 1;
}

.feature-c190 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hover_e83c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_e83c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_wide_8579 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_bad0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_db3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .large_db3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-fast-22df {
    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);
}

.iron_f491 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warm_514e {
    flex: 1;
}

.lower_21d8 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.banner_simple_7c34 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail_inner_c97d {
    margin-top: 2rem;
    text-align: center;
}

.glass_dd02 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.glass_dd02 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.alert-pressed-89a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-pressed-89a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-a76a {
    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);
}

.preview-a76a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.preview-a76a .message-fixed-5d16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-a76a .tertiary-down-8167 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.preview-a76a .new-0612 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.preview-a76a .column-stone-efb8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.form-focused-5b86 {
    padding: var(--section-padding);
}

.active_ee3d .black_35d3 {
    flex: 1;
}

/* Promo Calendar Section */
.fast-d48f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-short-3ce7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-short-3ce7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-41e7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_989a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.aside_hard_af1b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.frame_full_4700 {
    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);
}

.thumbnail_plasma_3d99 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paper-21a2 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tabs-d30d {
    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);
}

.tabs-d30d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-d30d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.status_orange_4474 {
    padding: var(--section-padding);
}

.accordion_666d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accordion_666d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table_in_a3e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle-5000 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus-a8d4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-a8d4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.active_5958 {
    margin-top: 3rem;
}

.active_5958 .cool-1587 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.active_5958 .menu-copper-1cd0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active_5958 .title_2899 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.active_5958 .title_2899 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.active_5958 .title_2899 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.active_5958 .title_2899 li strong {
    color: var(--warning-color);
}

.title_2c8f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title_2c8f strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.easy-a2d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_343f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_343f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-08cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-08cd .label-d20f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dropdown_2ce1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagination_a960 {
    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);
}

.pagination_a960:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bright-713a {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_b1b2 {
    flex: 1;
}

.tall_59e8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.pattern-in-bee4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.text-east-37e8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.hard_8fee {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.secondary-dark-45ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .secondary-dark-45ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-d387 {
    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);
}

.title-d387:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading_1fe7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_f965 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop-fluid-dd03 {
    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);
}

.pro_9a91 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pro_9a91 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.border_outer_4937 { 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; }
.thumbnail_450a, .mask_d993 { max-width:100%; height:auto; }

.list-174b, .feature_stone_c284, .iron_3561 { white-space:normal; }

.old_0233,
.dim-e4a8,
.chip_simple_acf5,
.alert-pressed-89a3,
.gradient-7485,
.pro-45b9 {
  flex-wrap:wrap;
}

[class*="grid"],
.secondary-dark-45ad,
.center-18b6,
.block_91dc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dim_d69d img,
.dim-e4a8 img,
.easy_4c75 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.chip_medium_2ce9, .next-5691,
.silver-bcef, .pagination-4277 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.pagination-black-dc7a { width:100%; overflow-x:auto; }
.pagination-black-dc7a table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.old-d164 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .old-d164 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.info-a6fe {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.list_stone_18bc,
.notification_1653,
.yellow-71fe,
.photo_8c2a,
.huge-76a4,
.secondary-dark-45ad,
.center-18b6,
.block_91dc,
.popup_a76d,
.steel_4793,
.old-d164 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .list_stone_18bc,
  .notification_1653,
  .yellow-71fe,
  .photo_8c2a,
  .huge-76a4,
  .secondary-dark-45ad,
  .center-18b6,
  .block_91dc,
  .popup_a76d,
  .steel_4793,
  .old-d164 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.filter_acb6,
.basic-8516,
.title-d387,
.sort-7046,
.card_static_c031,
.small_e70c,
.column-2e94,
.info-a6fe {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.paper-67c5,
.backdrop-7003,
.hover-last-d108 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.paper-67c5 > *,
.backdrop-7003 > *,
.hover-last-d108 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: fceb */
.promo-block-y3 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
