/* {$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;
}

.item-medium-f46f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.active-short-38ee {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .active-short-38ee {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .active-short-38ee {
        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 */
.photo_wide_edfe {
    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);
}

.pattern-6a06 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pattern-6a06 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .surface-black-d69f {
        grid-column: 1;
    }
    
    .icon_031a {
        grid-column: 2;
    }
    
    .caption_brown_1417 {
        grid-column: 3;
    }
}

.surface-black-d69f img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.surface-black-d69f:hover img {
    transform: scale(1.05);
}

/* Navigation */
.brown_2ae6 {
    display: none;
}

@media (min-width: 1024px) {
    .brown_2ae6 {
        display: block;
    }
}

/* Grouped Navigation */
.layout_blue_7f27 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.huge_a0e2 {
    position: relative;
}

.tertiary-cold-d6af {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.huge_a0e2 .table_1894 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.table_1894 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.upper_b455 {
    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;
}

.upper_b455:hover,
.upper_b455.fn-active-e4f8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.label-left-9cb8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .label-left-9cb8 {
        display: flex;
    }
}

/* Mobile Register Button */
.icon_031a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .icon_031a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.primary-east-87d0 {
    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;
}

.primary-east-87d0::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 */
.caption_brown_1417 {
    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) {
    .caption_brown_1417 {
        display: none;
    }
}

.caption_brown_1417 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.caption_brown_1417.fn-active-e4f8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.caption_brown_1417.fn-active-e4f8 span:nth-child(2) {
    opacity: 0;
}

.caption_brown_1417.fn-active-e4f8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.bottom_ceea {
    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;
}

.bottom_ceea.fn-active-e4f8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.main_slow_e877 {
    overflow: hidden;
}

.plasma_3806 {
    list-style: none;
    padding: 0.75rem 0;
}

.tooltip-iron-d83c {
    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;
}

.tooltip-iron-d83c:hover,
.tooltip-iron-d83c.fn-active-e4f8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tooltip-iron-d83c.footer_dark_85f2 {
    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;
}

.tooltip-iron-d83c.footer_dark_85f2::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 */
.notice_large_9984 {
    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;
}

.header_df27 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header_df27:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.focus-short-3fc6 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.focus-short-3fc6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accent-rough-11a5 {
    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;
}

.accent-rough-11a5:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.medium_3f80 {
    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;
}

.input-hot-e323 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.input-hot-e323:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.notification-stale-c9b0 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.notification-stale-c9b0:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-easy-83b3 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.form-easy-83b3: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);
}

.modal_d2bf {
    font-size: 1em;
    font-weight: 700;
}

.border-0058 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.shade-6b1a {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.shade-6b1a::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;
}

.accent_basic_e189 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .accent_basic_e189 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.search_old_b696 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sidebar-wide-62dd {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status_thick_a52c {
    margin-bottom: 2rem;
}

.tertiary_0e02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tertiary_0e02 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video_copper_18ec {
    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);
}

.main-advanced-aa9b {
    font-size: 1.5rem;
}

.form-south-59e3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.modal_small_dd38 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steel-1f87 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.steel-1f87:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.element_a3d4 {
    text-align: center;
    margin-bottom: 3rem;
}

.article_cea7 {
    margin-bottom: 1rem;
}

.basic-4507 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.last_f99c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .last_f99c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .last_f99c.complex_d018 {
        direction: rtl;
    }
    
    .last_f99c.complex_d018 > * {
        direction: ltr;
    }
}

.chip_top_7060 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.chip_top_7060:first-child {
    margin-top: 0;
}

.summary_7b4e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.active-0018 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.active-0018:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.backdrop_narrow_4857 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_narrow_4857 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-wide-815c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button-d844 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.white_5020 {
    list-style: none;
}

.white_5020 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.white_5020 li:last-child {
    border-bottom: none;
}

/* Games Features */
.upper-d0dd {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.modal_cold_bfb6 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.popup_b028 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.bright_13ba {
    margin: 2rem 0;
}

.picture-9654 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.solid-5e55 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.accordion_active_12cc {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.thumbnail_last_bd4a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.border_wood_4cc3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_wood_4cc3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange_6b1d {
    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);
}

.orange_6b1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask_hovered_a87a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pattern-f29f {
    font-size: 1.5rem;
}

.block-54e4 {
    color: var(--accent-color);
    margin: 0;
}

.tiny_55f9 {
    list-style: none;
}

.tiny_55f9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tiny_55f9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.hot_3dc2 {
    margin: 2rem 0;
}

.status_dynamic_18d1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.component-over-326f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .component-over-326f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-cold-1638 {
    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);
}

.hard_6c39 {
    font-size: 1.25rem;
}

.thick_651e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.detail-slow-a4ca,
.disabled_hard_c954 {
    text-align: center;
    margin: 2rem 0;
}

.lite_43e3,
.table_iron_0c58 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pink_0e2e {
    margin: 2rem 0;
    text-align: center;
}

.old-e808 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.old-e808::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;
}

.status-b4f2 {
    position: relative;
    z-index: 1;
}

.title-upper-dfe0 {
    margin-bottom: 1rem;
}

.right_a3cc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search_warm_97c1 {
    margin-bottom: 3rem;
}

.paragraph-339c {
    margin-top: 3rem;
}

.center-5b99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .center-5b99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center-5b99 .video_copper_18ec {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.grid-plasma-6e55 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_5c58 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.preview-d6ca {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hover-north-aa1c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hover-north-aa1c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-north-aa1c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.hovered-1e10 {
    margin-bottom: 1rem;
}

.module_d756 img {
    margin-bottom: 1rem;
}

.tag-smooth-4830 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-focused-ae45 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.action-ca73 {
    list-style: none;
}

.action-ca73 li {
    margin-bottom: 0.5rem;
}

.action-ca73 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.action-ca73 a:hover {
    color: var(--accent-color);
}

.main-2c05 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tertiary_0fbe {
    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);
}

.tertiary_0fbe:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.info_medium_90c4 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info_medium_90c4 p {
    margin-bottom: 0.25rem;
}

.video-dark-cc11 {
    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) {
    .video-dark-cc11 {
        flex-direction: row;
    }
}

.brown-05b6 {
    text-align: center;
}

@media (min-width: 768px) {
    .brown-05b6 {
        text-align: left;
    }
}

.brown-05b6 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_cf1a {
    font-size: 0.75rem !important;
}

.gallery_8516 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-under-a46f {
    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);
    }
}

.feature_brown_4622 {
    animation: fadeInUp 0.6s ease-out;
}

.tag-d16f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.button-c828 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-c828 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.container-f79f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-f79f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_627a {
    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);
}

.cold_627a .popup_b028 {
    font-size: 1.25rem;
}

.cold_627a .chip-white-49fb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.caption_small_e07f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_small_e07f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_e403 {
    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);
}

.thick_e403:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-ac65 {
    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);
}

.label-easy-1928 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stone-0323 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_advanced_21cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_6e4a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_6e4a .pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer_6e4a .basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_0c27 {
    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);
}

.container_ef0b {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.container_ef0b img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.container_ef0b img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.alert_wide_3e6d {
    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);
}

.article_0aa0 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight_tiny_0f4d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight_tiny_0f4d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight_tiny_0f4d 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);
}

.highlight_tiny_0f4d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.highlight_tiny_0f4d input::placeholder {
    color: var(--text-muted);
}

.badge_east_818a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hovered-c664 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.hovered-c664 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pro-92a8 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pro-92a8:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.component-over-326f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-over-326f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-cold-1638 {
    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);
}

.disabled-cold-1638 .hard_6c39 {
    font-size: 1.25rem;
}

.disabled-cold-1638 .thick_651e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.small_a4ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-out-6945 {
    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-out-6945 .popup_b028 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-out-6945 .pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-out-6945 .basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_df7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_467b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center_467b .hidden_083d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center_467b .glass-08ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_narrow_40b7 {
    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);
}

.aside_full_089c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_full_089c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim-c866 {
    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);
}

.dim-c866:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_95bf {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.border-static-ebb9 {
    flex: 1;
}

.black-c920 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.short_b44b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.west_c39a {
    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);
}

.west_c39a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.shade_lite_1787 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_lite_1787 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_white_8f2e {
    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);
}

.button_white_8f2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-283d {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-0c3a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-mini-6916 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.table-pro-3722 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.panel_cf5d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal-a800 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-0ebb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.up-0ebb .overlay_c5af {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.up-0ebb .row_897f {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_b8b5 {
    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);
}

.sort_action_0232 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-tiny-1a6b {
    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);
}

.border-tiny-1a6b .popup_b028 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-tiny-1a6b .pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-tiny-1a6b .basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_north_ba53 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_north_ba53 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_8d05 {
    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);
}

.background_8d05:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.modal_b849 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_b849 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma_90a7 {
    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);
}

.plasma_90a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-cold-49ac {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_5d29 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.solid-5e55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.medium-0eed {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.title_complex_0349 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_0509 {
    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);
}

.link_0509:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_1323 {
    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);
}

.header_a181 {
    flex: 1;
}

.heading-b600 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hidden_under_7a52 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.action-0df5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_orange_e19d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-stale-d354 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-stale-d354 .hidden_083d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus-stale-d354 .glass-08ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_hard_c954 {
    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);
}

.dirty-bfd8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-bfd8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.background-24a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-24a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_b086 {
    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);
}

.hard_b086:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_5eaf {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_4fa2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo_6243 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dark_c64c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item_center_95a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-477c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_focused_1a3b {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_bright_8c6d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero_cold_3c81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_action_0232 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-tiny-1a6b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.border-tiny-1a6b .pattern_c6d9 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-tiny-1a6b .basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-a7ef {
    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);
}

.basic-ac79 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic-ac79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-ac79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-a496 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container-a496:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-fixed-161a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.small_da25 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.backdrop-lower-1719 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dirty-32a6 {
    padding: 1.5rem;
}

.slider-fd4a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination-medium-5412 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-medium-5412 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;
}

.pagination-medium-5412 li:last-child {
    border-bottom: none;
}

.pagination-medium-5412 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.link_center_6ed9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_center_6ed9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-right-801a {
    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);
}

.feature-right-801a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-advanced-5bfa {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-wood-340f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-4590 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.active-df9e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.footer_warm_512d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-lower-c2f9 {
    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);
}

.alert_tiny_98e5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide_16ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_8128 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-bdc8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal-pro-66e6 {
    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);
}

.tooltip-bd64 {
    text-align: center;
}

.fresh_4478 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-action-8926 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow_6dd2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_next_333d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_next_333d .pattern_c6d9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb_next_333d .basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_1797 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview_1797 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview_1797 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_copper_3f0f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.surface_copper_3f0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_a7cc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-lite-8cb6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern_c6d9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip-simple-4320 {
    padding: 1.5rem;
}

.basic-8ddf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert-in-bc8b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-in-bc8b 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;
}

.alert-in-bc8b li:last-child {
    border-bottom: none;
}

.alert-in-bc8b li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.rough-f506 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.medium-4a87 {
    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);
}

.medium-4a87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_slow_e5e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-667b {
    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);
}

.logo-ac65 {
    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;
}

.label-easy-1928 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-0323 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_bb76 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_0867 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny_ea98 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_6bc7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lower-ad52 {
    display: flex;
    gap: 1rem;
}

.lower-ad52 .frame-823a {
    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;
}

.breadcrumb-f389 {
    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);
}

.gradient-b91d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer_complex_bb18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_complex_bb18 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;
}

.footer_complex_bb18 li:last-child {
    border-bottom: none;
}

.footer_complex_bb18 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.picture_b68c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture_b68c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture_b68c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_tall_7619 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notification_tall_7619:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-full-e17a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_bc18 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.overlay_c5af {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.top_64d5 {
    font-size: 1rem;
}

.blue-fa37 {
    padding: 1.5rem;
}

.row_897f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gradient_white_7b9c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.gradient_white_7b9c .tooltip-bd64 {
    text-align: center;
}

.gradient_white_7b9c .disabled-action-8926 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.gradient_white_7b9c .feature_narrow_5f14 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.under_8bee {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.under_8bee:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.highlight_gold_a960 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_gold_a960 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-c25d {
    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);
}

.north-c25d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-1cda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_6158 {
    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);
}

.search_11b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_3d06 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_5b4c {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_in_4939 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-575f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-86ad {
    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);
}

.message_26b4 {
    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;
}

.message_26b4.border-d902 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.message_26b4.modal-west-1743 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.message_26b4.info-bottom-36d0 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.message_26b4.pattern-aa6f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.message_26b4.panel_medium_1d52 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.rough_4e5a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column-9035 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite_5373 {
    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);
}

.action_39a3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.video_df7c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_df7c 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;
}

.video_df7c li:last-child {
    border-bottom: none;
}

.video_df7c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.copper_8a78 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .copper_8a78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .copper_8a78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-e64d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip-e64d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-e64d.section_plasma_fcef {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tooltip-e64d.section_plasma_fcef {
        grid-column: span 3;
    }
}

.breadcrumb_b901 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tooltip-e64d.section_plasma_fcef .breadcrumb_b901 {
    background: rgba(6, 182, 212, 0.1);
}

.accent_d29b {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hard-0b1e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tooltip-e64d.section_plasma_fcef .hard-0b1e {
    color: var(--info-color);
}

.new_298c {
    padding: 1.5rem;
    text-align: center;
}

.outline_d6d3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tooltip-e64d.section_plasma_fcef .outline_d6d3 {
    color: var(--info-color);
}

.container-cool-aacd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.clean_ed50 {
    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 */
.hero_615c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_615c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-top-f7af {
    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);
}

.panel-top-f7af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_07c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-out-6945 {
    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);
}

.hard_6c39 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-2977 {
    flex: 1;
}

.status_dynamic_18d1 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_green_e199 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_0d9d {
    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);
}

.dropdown_fixed_5485 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.middle-bee0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-under-a46f {
    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);
}

.layout-cool-0df0 {
  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);
}

.layout-cool-0df0 .tooltip-bd64 {
    text-align: center;
}

.layout-cool-0df0 .fresh_4478 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.layout-cool-0df0 .disabled-action-8926 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bottom-9e36 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-b1ff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_dynamic_8ee9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_85a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east_ed14 {
    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);
}

.article_over_c1c9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fresh_92c4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_south_f35c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_south_f35c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_south_f35c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-cddf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-cddf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_down_1569 {
    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);
}

.bottom-d82d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture_fdb9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dark-9987 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-9987.inner-a355 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dark-9987.slider-db42 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.dark-9987.stale_5acc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.icon-north-93a4 {
    padding: 1.5rem;
    text-align: center;
}

.element-plasma-1623 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail_f57a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail_f57a .brown-901a {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.short_d31b {
    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);
}

.short_d31b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.stale-b3c5 {
  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);
}

.notice-5e31 {
    text-align: center;
}

.notice-5e31 .fresh_4478 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.notice-5e31 .disabled-action-8926 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.input_aa21 { text-align: center; }
.icon-7a29 { text-align: left; }
.frame_402e { text-align: right; }

.paragraph_pro_8f9b { margin-bottom: 0; }
.orange_b98a { margin-bottom: 0.5rem; }
.liquid-3491 { margin-bottom: 1rem; }
.thick-5bdb { margin-bottom: 1.5rem; }
.green-79da { margin-bottom: 2rem; }

.motion-b540 { margin-top: 0; }
.box_4d1c { margin-top: 0.5rem; }
.popup-c214 { margin-top: 1rem; }
.accordion_green_fe98 { margin-top: 1.5rem; }
.tertiary-f94e { margin-top: 2rem; }

.fn-hidden-e4f8 { display: none; }
.fn-visible-e4f8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .shade-6b1a {
        padding: 6rem 0 3rem;
    }
    
    .accent_basic_e189 {
        text-align: center;
    }
    
    .last_f99c {
        text-align: center;
    }
    
    .tertiary_0e02 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .photo_wide_edfe,
    .bottom_ceea,
    .old-e808,
    .preview-d6ca {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .shade-6b1a {
        background: none;
    }
}

/* Providers Section */
.dark-a875 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-hovered-f584 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-hovered-f584 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box-hovered-f584 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-14e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row-14e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-a15d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.aside-hovered-f486 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.alert-0337 {
    list-style: none;
    padding: 0;
}

.alert-0337 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.alert-0337 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.shadow-new-9227 {
    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);
}

.shadow-new-9227 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.full_e70e {
    padding: var(--section-padding);
}

.paragraph-611e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-611e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_motion_6679 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip_motion_6679:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mask_b52c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.carousel_97e1 {
    display: flex;
    flex-direction: column;
}

.header_03c9 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.black_7b4a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.yellow_56d7 {
    color: var(--accent-color);
}

.heading-bottom-e41e {
    font-size: 1.25rem;
}

.rough_7b32 {
    margin-bottom: 1rem;
}

.rough_7b32 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.texture_hard_061a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.copper_a627 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.tooltip-bd64 {
    text-align: center;
}

.fresh_4478 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-action-8926 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.article_b2c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-tiny-677b {
    margin: 2rem 0;
}

.texture-slow-01f2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.texture-slow-01f2 .popup_b028 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-3b67 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-orange-bd77 {
    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;
}

.filter-orange-bd77:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert-91d9 {
    font-size: 2rem;
}

.pink_df5b {
    display: flex;
    flex-direction: column;
}

.dropdown-7023 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.notice_small_78af {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.carousel-hard-2a77 {
    padding: var(--section-padding);
}

.container_north_522c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container_north_522c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container_north_522c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-395d {
    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);
}

.paragraph-395d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-395d .fresh_4478 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.paragraph-395d .disabled-action-8926 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.paragraph-395d .icon_stone_67da {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.main_2daa {
    margin-top: 4rem;
}

.video-c92c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.yellow_bc35 {
    overflow-x: auto;
}

.layout-plasma-c6a2 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.layout-plasma-c6a2 thead {
    background: var(--accent-color);
}

.layout-plasma-c6a2 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.layout-plasma-c6a2 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-plasma-c6a2 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.layout-plasma-c6a2 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.pressed-f024 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_5c4b {
    max-width: 900px;
    margin: 0 auto;
}

.picture_a111 {
    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);
}

.picture_a111:hover {
    border-color: var(--accent-color);
}

.detail-9409 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.detail-9409 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.active_cb87 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.picture_a111.fn-active-e4f8 .active_cb87 {
    transform: rotate(45deg);
}

.header-fdb5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.picture_a111.fn-active-e4f8 .header-fdb5 {
    max-height: 1000px;
}

.header-fdb5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.media_1f92 {
    padding: var(--section-padding);
}

.container_ef0b {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.dim-ae97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic-8570 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic-8570 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_6cff {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_82c7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.description_slow_695f {
    font-size: 2rem;
}

.element_wide_4b3c {
    color: var(--text-white);
    margin: 0;
}

.banner_brown_f37f {
    list-style: none;
    padding: 0;
}

.banner_brown_f37f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_brown_f37f li:last-child {
    border-bottom: none;
}

.block-dim-9c27 {
    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);
}

.block-dim-9c27 p {
    color: var(--success-color);
    margin: 0;
}

.top_2b24 {
    margin-top: 3rem;
}

.gradient-b91d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form_west_dce6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form_west_dce6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element_medium_79be {
    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);
}

.nav_33b3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.element_medium_79be p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.smooth_580d {
    padding: var(--section-padding);
}

.progress_focused_de72 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_focused_de72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_7acf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture_7acf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dropdown_bebf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.progress_d3f4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lower_c52e {
    flex: 1;
}

.hovered_300b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.preview_b533 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.sidebar-pro-776d {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_d4a4 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_d4a4:last-child {
    border-bottom: none;
}

/* Comparison Section */
.image-inner-d294 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.chip_hot_37de {
    padding: var(--section-padding);
}

.sidebar_bronze_4292 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.frame_prev_3602 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_prev_3602 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame_purple_c403 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-0ccc, .photo-49ab, .focus_b2e0 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.focus_b2e0 {
    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 */
.logo-e80c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot_e553 {
    margin: 2rem 0;
}

.large-fc42 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-c0ec {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.block-slow-9167 {
    list-style: none;
    padding: 0;
}

.block-slow-9167 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;
}

.block-slow-9167 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.block-slow-9167 li:last-child {
    border-bottom: none;
}

.modal-d691 {
    text-align: center;
    margin-top: 2rem;
}

.secondary-lite-9b07 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hard-c528 {
    padding: var(--section-padding);
}

.carousel_69d0 {
    margin: 2rem 0;
}

.sidebar-ea10 {
    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) {
    .sidebar-ea10 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar-ea10:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice_over_3da1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.filter_5f4c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.inner_ded5 {
    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;
}

.outer-c9a7 {
    flex: 1;
}

.clean-ef49 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.orange_3689 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.solid-50e1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.module-hot-c98e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .module-hot-c98e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.lite_c207 {
    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);
}

.lite_c207:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lite_c207 .fresh_4478 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite_c207 .disabled-action-8926 {
    color: var(--text-gray);
    font-size: 1rem;
}

.plasma-8f7c {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_selected_25d2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.filter_selected_25d2 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.item_bright_0e17 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .item_bright_0e17 {
        grid-template-columns: 1fr 1fr;
    }
}

.frame-23c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-gold-71a4 {
    margin-bottom: 1.5rem;
}

.badge-gold-71a4 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.badge-gold-71a4 input,
.badge-gold-71a4 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;
}

.badge-gold-71a4 input:focus,
.badge-gold-71a4 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.summary-wide-b8b8 {
    width: 100%;
    margin-top: 1rem;
}

.thick_722e {
    display: flex;
    align-items: center;
}

.up-56a2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.form_thick_3768 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.logo_slow_3af4 {
    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;
}

.backdrop-14be {
    color: var(--text-gray);
}

.panel-down-3106 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.accordion-yellow-7d8d {
    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);
}

.accordion-yellow-7d8d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.icon_665e {
    margin-top: 3rem;
}

.message-liquid-98ba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.accent_prev_75c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_9fee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.north_1e85 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north_1e85:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.gradient_6d69 {
    padding: var(--section-padding);
}

.first_ca81 {
    margin: 2rem 0;
}

.overlay_gas_8e44 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.title-white-cd8a {
    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;
}

.title-white-cd8a:hover, .title-white-cd8a.fn-active-e4f8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gallery_2c41 {
    display: none;
}

.gallery_2c41.fn-active-e4f8 {
    display: block;
}

.row-stone-10a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-smooth-873d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero_focused_a414 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hero_focused_a414 ul {
    list-style: none;
    padding: 0;
}

.hero_focused_a414 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hero_focused_a414 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.action_79cc {
    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 */
.gallery_1691 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_blue_72ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold-caeb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_hot_8c4f {
    color: var(--accent-color);
    margin: 0;
}

.heading-green-bab7 {
    display: flex;
    gap: 1.5rem;
}

.focus-924b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box_7e06 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.article_a85a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_a85a.hovered_38e8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.article_a85a.in_0965 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.article_a85a.video-f735 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.huge_5232 {
    margin-top: 2rem;
}

.fast-2fbc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gradient-c8e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .gradient-c8e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange-dad2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.menu-a872 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.down-08b3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.border_top_d037 {
    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 */
.orange_67c9 {
    padding: var(--section-padding);
}

.carousel_55b6 {
    margin: 2rem 0;
}

.glass-cefc {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.wood-6eb9 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.primary-simple-abf1 {
    list-style: none;
    padding: 0;
}

.primary-simple-abf1 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;
}

.primary-simple-abf1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.primary-simple-abf1 li:last-child {
    border-bottom: none;
}

.logo-iron-76fa {
    margin: 2rem 0;
}

.advanced_0fca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.west-b164 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .west-b164 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paper-83f2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-101b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list_copper_8385 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section-hot-b98d {
    margin-top: 2rem;
}

.black-c920 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.static-20b0 {
    list-style: none;
    padding: 0;
}

.accent_mini_cc9a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.accent_mini_cc9a a {
    color: var(--accent-color);
    text-decoration: none;
}

.accent_mini_cc9a a:hover {
    text-decoration: underline;
}

.focus-bright-2a86 {
    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 */
.basic_8115 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_a45f {
    margin: 2rem 0;
}

.nav-9c26 {
    margin-bottom: 3rem;
}

.nav-9c26 .carousel-c0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mask-2b39 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gallery_755e {
    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);
}

.gallery_755e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.layout-last-6ec7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .layout-last-6ec7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-c861 {
    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 */
.thick_329a {
    padding: var(--section-padding);
}

.steel-594c {
    margin: 2rem 0;
}

.primary_in_5adc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.first-60b4 {
    overflow-x: auto;
    margin: 2rem 0;
}

.slider_ff7d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.focus_basic_7214 {
    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;
}

.mask_narrow_c7a5 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.soft_538e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .soft_538e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-65c2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-65c2 .popup_b028 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pro-65c2 .pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold_84a3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.pink-54ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wood_3e58 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood_3e58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_1277 {
    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;
}

.badge_1277:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.cold_411a {
    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);
}

.stale_ccb3 {
    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;
}

.highlight-large-3d04 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo_6e91 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.module-64ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.notice-df44 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.black-438b {
    color: var(--text-white);
    font-weight: 600;
}

.media-485b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline_new_d3c3 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.outline_new_d3c3 .frame-823a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dim_3bc8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dim_3bc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_smooth_b494 {
    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);
}

.box_smooth_b494:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_smooth_b494 .fresh_4478 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_smooth_b494 .disabled-action-8926 {
    color: var(--text-gray);
    font-size: 1rem;
}

.middle_f1aa {
    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);
}

.column_slow_b3c2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.column_slow_b3c2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.item_center_95a5 {
    margin: 2rem 0;
}

.cool-477c {
    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);
}

.cool-477c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shade_focused_1a3b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overlay_blue_9078 {
    flex: 1;
}

.popup_bright_8c6d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero_cold_3c81 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.sort_action_0232 {
    margin: 2rem 0;
}

.border-tiny-1a6b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-tiny-1a6b .pattern_c6d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.border-tiny-1a6b .basic-8ddf {
    color: var(--text-gray);
    margin: 0;
}

.first-a7ef {
    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);
}

.first-a7ef .lite_43e3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.gold_84a3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.header_1323 {
    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;
}

.header_a181 {
    flex: 1;
}

.hidden_under_7a52 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.action-0df5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.logo-ac65 {
    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;
}

.grid_81bb {
    flex: 1;
}

.label-easy-1928 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stone-0323 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tiny_ea98 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.component_6bc7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.lower-ad52 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.lower-ad52 .frame-823a {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.breadcrumb-f389 {
    margin-top: 2rem;
}

.breadcrumb-f389 .gradient-b91d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.gallery-bd54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-pro-66e6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .modal-pro-66e6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-pro-66e6 .tooltip-bd64 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_6dd2 {
    margin: 2rem 0;
}

.breadcrumb_next_333d {
    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 */
.banner-dynamic-f5ee {
    padding: var(--section-padding);
}

.chip-simple-4320 {
    margin-top: 1rem;
}

.alert-in-bc8b {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.alert-in-bc8b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.alert-in-bc8b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.table-cold-5433 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_e9b5 {
    margin: 2rem 0;
}

.large-b466 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.bottom-5c1a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner-gas-9f20 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.row_dim_ed60 {
    margin: 2rem 0;
}

.red-1be8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.red-1be8 .carousel-c0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_outer_5068 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .block_outer_5068 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box-purple-6317 {
    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);
}

.tooltip_in_748d {
    color: var(--text-white);
    font-weight: 600;
}

.row-cold-66f8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.smooth-b3af {
    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);
}

.smooth-b3af p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.dim-c51a {
    padding: var(--section-padding);
}

.lite_ad56 {
    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;
}

.lite_ad56:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.secondary-59c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-59c9 .nav_33b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-59c9 .card-5222 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.active-c33b {
    flex: 1;
}

.surface_cd33 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.logo-fixed-d0d3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-fixed-d0d3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.logo-fixed-d0d3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.detail-paper-81cc {
    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);
}

.detail-paper-81cc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-paper-81cc strong {
    color: var(--warning-color);
}

/* Slots Section */
.current-9ec9 {
    padding: var(--section-padding);
}

.panel_cf5d {
    margin: 2rem 0;
}

/* Table Games Section */
.dynamic_cc53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-a800 {
    margin: 2rem 0;
}

.up-0ebb {
    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);
}

.up-0ebb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.up-0ebb .overlay_c5af {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.up-0ebb .row_897f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.widget_b8b5 {
    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);
}

.widget_b8b5 .lite_43e3 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.tall-64f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-c389 {
    margin: 2rem 0;
}

.main_ed9d {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-dynamic-9824 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_c79c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image_out_7db5 {
    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);
}

.image_out_7db5:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.image_out_7db5.fn-active-e4f8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-40a4 {
    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);
}

.purple-430e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.purple-430e strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.box-c661 {
    padding: var(--section-padding);
}

.accent_red_a132 {
    margin: 2rem 0;
}

.search_old_510d {
    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);
}

.search_old_510d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .search_old_510d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cold_8166 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.new-cb87 {
    flex: 1;
}

.paragraph-steel-7a9a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb_6f3e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.media_bronze_aa4e {
    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;
}

.silver-6baf {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-8ed4 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pink-afec {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight-out-8175 {
    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;
}

.highlight-out-8175:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.video-166d {
    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);
}

.easy_d3f1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.easy_d3f1 strong {
    color: var(--accent-color);
}

/* New Games Section */
.inner-8d89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-copper-2839 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading-copper-2839 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading-copper-2839 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_smooth_9eae {
    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;
}

.shadow_smooth_9eae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption-center-4e8e {
    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;
}

.header_selected_9f6c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.right-97bb {
    font-size: 2rem;
}

.progress-hovered-bc51 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.sort-7b4e {
    flex: 1;
}

.pagination-narrow-d46e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.grid-d33e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.easy_57a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.under_2a70 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-0e35 {
    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;
}

.prev-79dd {
    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;
}

.prev-79dd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper-5e3a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_action_6c94 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-black-4b9a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .item-black-4b9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-20cd {
    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);
}

.breadcrumb_last_7804 {
    color: var(--text-white);
    font-weight: 600;
}

.medium-95b1 {
    color: var(--accent-color);
    font-weight: 600;
}

.container_923c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.container_923c strong {
    color: var(--accent-color);
}

/* Security Section */
.pattern-aac1 {
    padding: var(--section-padding);
}

/* Benefits Section */
.smooth_0843 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.full-621e {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.bright-74a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-9d81 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.frame_e1d0 {
    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) {
    .frame_e1d0 {
        flex-direction: column;
        gap: 1rem;
    }
}

.frame_e1d0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.frame_e1d0 .logo-ac65 {
    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;
}

.frame_e1d0 .grid_81bb {
    flex: 1;
}

.frame_e1d0 .label-easy-1928 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.frame_e1d0 .stone-0323 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.paragraph-ce9a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-ce9a .status_dynamic_18d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-ce9a .small_a4ec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph-ce9a .small_a4ec li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph-ce9a .small_a4ec li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.nav-next-4124 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.disabled_lite_acaf {
    padding: var(--section-padding);
}

.primary-c0d7 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .primary-c0d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-narrow-3452 {
    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);
}

.article-narrow-3452:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.article-narrow-3452 .notice-gold-681b {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-narrow-3452 .gallery_fixed_bbbe {
    flex: 1;
}

.article-narrow-3452 .hidden_083d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.article-narrow-3452 .banner-clean-34b7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert_695e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_695e .link_3598 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_695e .search_bfd5 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.alert_695e .search_bfd5 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);
}

.alert_695e .search_bfd5 li:last-child {
    border-bottom: none;
}

.alert_695e .search_bfd5 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;
}

.alert_695e .search_bfd5 li strong {
    color: var(--text-white);
}

.background-dynamic-ddeb {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.background-dynamic-ddeb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background-dynamic-ddeb strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.menu_5965 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-purple-a403 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gallery-purple-a403 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge-0a43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.badge-0a43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-simple-b938 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content_copper_b000 {
    font-size: 2rem;
}

.old-3ea4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.light_e784 {
    flex: 1;
}

.over-d7a3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over-d7a3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.over-d7a3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.paragraph-7e95 {
    margin-top: 3rem;
}

.glass-cefc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wood-6eb9 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-simple-abf1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-simple-abf1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.primary-simple-abf1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.primary-simple-abf1 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.banner_78af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-36d9 {
    margin: 2rem 0;
}

.rough-b67f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.rough-b67f .carousel-c0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_bd58 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tiny_bd58 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-first-93bb {
    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);
}

.icon-first-93bb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.nav-58b9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pagination_black_cfee {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.stone_1412 {
    padding: var(--section-padding);
}

.fluid_1c47 {
    margin: 2rem 0;
}

.component_0364 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .component_0364 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component_0364 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas_44e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gas_44e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer-96fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item_3977 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.breadcrumb_67f8 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb_67f8.highlight-8ec4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.rough-8279 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.card-f3a6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.liquid-d2d5 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bright_009c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery_516f {
    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);
}

.gallery_516f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery_516f strong {
    color: var(--accent-color);
}

/* Update Log Section */
.active-4c57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_complex_8b5a {
    margin: 2rem 0;
}

.layout_0461 {
    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) {
    .layout_0461 {
        flex-direction: column;
        gap: 1rem;
    }
}

.layout_0461:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.layout_0461::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);
}

.overlay_1609 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.background_63fa {
    flex: 1;
}

.wrapper_prev_bb86 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active-fluid-a621 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-fluid-a621 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.border_7cb6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex_3bdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-a572 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph-a572 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north-3182 {
    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);
}

.sidebar-99e1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.box_45e6 {
    flex: 1;
}

.preview_current_298b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.badge-d690 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.silver_2cc0 {
    margin-top: 2rem;
    text-align: center;
}

.section-5efa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.section-5efa strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.highlight_gold_a960 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_gold_a960 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-c25d {
    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);
}

.north-c25d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.north-c25d .component-advanced-5bfa {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-c25d .wrapper-wood-340f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.north-c25d .status-4590 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.north-c25d .active-df9e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.info-4dfd {
    padding: var(--section-padding);
}

.text_6158 .message-5adf {
    flex: 1;
}

/* Promo Calendar Section */
.silver-be79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_4969 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out_4969 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-easy-5aa9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_orange_d9d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.badge-a029 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brown-9de6 {
    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);
}

.component-8c3e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover_97d5 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.footer_outer_0dc0 {
    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);
}

.footer_outer_0dc0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer_outer_0dc0 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.bright-c5ca {
    padding: var(--section-padding);
}

.accordion_old_1f02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accordion_old_1f02 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text_4134 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_green_1abd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail-dark-f12b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail-dark-f12b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-d958 {
    margin-top: 3rem;
}

.clean-d958 .glass-cefc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.clean-d958 .wood-6eb9 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean-d958 .primary-simple-abf1 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.clean-d958 .primary-simple-abf1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.clean-d958 .primary-simple-abf1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.clean-d958 .primary-simple-abf1 li strong {
    color: var(--warning-color);
}

.media_596a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media_596a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.warm_78a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_simple_6a4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_simple_6a4c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_5741 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_5741 .carousel-c0ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.article-42c3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.middle_acf9 {
    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);
}

.middle_acf9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph-copper-c121 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bottom_cf1b {
    flex: 1;
}

.header_58f9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.detail_complex_31ed {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.focus_f1c9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.small_978b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shade_cool_4687 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .shade_cool_4687 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_25db {
    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);
}

.focus_25db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status_simple_c657 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy_4a6a {
    color: var(--text-gray);
    font-size: 1rem;
}

.filter_selected_25d2 {
    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);
}

.block_hot_2872 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.block_hot_2872 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.active-short-38ee { 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; }
.steel-1f87, .active-0018 { max-width:100%; height:auto; }

.notice_large_9984, .accent-rough-11a5, .medium_3f80 { white-space:normal; }

.accent_basic_e189,
.last_f99c,
.hero_615c,
.highlight_gold_a960,
.sort_action_0232,
.photo_south_f35c {
  flex-wrap:wrap;
}

[class*="grid"],
.shade_cool_4687,
.component_0364,
.center-5b99 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.shade-6b1a img,
.last_f99c img,
.modal_small_dd38 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.search_old_b696, .sidebar-wide-62dd,
.article_cea7, .basic-4507 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.yellow_bc35 { width:100%; overflow-x:auto; }
.yellow_bc35 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.box-hovered-f584 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .box-hovered-f584 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.row-14e9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.container_north_522c,
.section_purple_9b6e,
.article-stale-7bf5,
.bronze-9aa9,
.module-hot-c98e,
.shade_cool_4687,
.component_0364,
.center-5b99,
.stale-b3c5,
.accent_red_a132,
.box-hovered-f584 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .container_north_522c,
  .section_purple_9b6e,
  .article-stale-7bf5,
  .bronze-9aa9,
  .module-hot-c98e,
  .shade_cool_4687,
  .component_0364,
  .center-5b99,
  .stale-b3c5,
  .accent_red_a132,
  .box-hovered-f584 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.paragraph-395d,
.lite_c207,
.focus_25db,
.video_copper_18ec,
.gas_44e8,
.notice-5e31,
.search_old_510d,
.row-14e9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.mini_5e9d,
.table_02d4,
.alert_top_4c71 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mini_5e9d > *,
.table_02d4 > *,
.alert_top_4c71 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4ceb */
.phantom-card-b2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
