/* {$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;
}

.hero_768d {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.paragraph_0491 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .paragraph_0491 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .paragraph_0491 {
        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 */
.background_c9b7 {
    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);
}

.iron-c268 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .iron-c268 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .border-old-2c05 {
        grid-column: 1;
    }
    
    .progress_brown_2cef {
        grid-column: 2;
    }
    
    .surface-fd67 {
        grid-column: 3;
    }
}

.border-old-2c05 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.border-old-2c05:hover img {
    transform: scale(1.05);
}

/* Navigation */
.slider-hard-2179 {
    display: none;
}

@media (min-width: 1024px) {
    .slider-hard-2179 {
        display: block;
    }
}

/* Grouped Navigation */
.box-62e4 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sidebar_static_9e06 {
    position: relative;
}

.panel_center_d700 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.sidebar_static_9e06 .out_32ee {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.out_32ee {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.large-d362 {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.large-d362:hover,
.large-d362.fn-active-da4c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.bright_7224 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bright_7224 {
        display: flex;
    }
}

/* Mobile Register Button */
.progress_brown_2cef {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .progress_brown_2cef {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.paper-c6c9 {
    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;
}

.paper-c6c9::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 */
.surface-fd67 {
    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) {
    .surface-fd67 {
        display: none;
    }
}

.surface-fd67 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.surface-fd67.fn-active-da4c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.surface-fd67.fn-active-da4c span:nth-child(2) {
    opacity: 0;
}

.surface-fd67.fn-active-da4c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.picture-00be {
    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;
}

.picture-00be.fn-active-da4c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.alert_d487 {
    overflow: hidden;
}

.dirty-a901 {
    list-style: none;
    padding: 0.75rem 0;
}

.filter_upper_ceab {
    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;
}

.filter_upper_ceab:hover,
.filter_upper_ceab.fn-active-da4c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.filter_upper_ceab.gradient-blue-ec86 {
    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;
}

.filter_upper_ceab.gradient-blue-ec86::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 */
.texture_bde0 {
    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;
}

.notice-0ece {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.notice-0ece:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.modal_plasma_34b2 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.modal_plasma_34b2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.icon-5597 {
    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;
}

.icon-5597:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.image_7bb1 {
    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;
}

.content-6367 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.content-6367:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.widget_869b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.widget_869b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.shadow-hot-2421 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.shadow-hot-2421: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);
}

.bottom_23ce {
    font-size: 1em;
    font-weight: 700;
}

.carousel_center_46d6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.fresh_54c2 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.fresh_54c2::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;
}

.tabs-4b25 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tabs-4b25 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.list_blue_2871 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.out_c1b2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.description-bright-f969 {
    margin-bottom: 2rem;
}

.sidebar-3a9c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sidebar-3a9c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-983f {
    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);
}

.footer-slow-abed {
    font-size: 1.5rem;
}

.mask_6dcf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pagination_iron_9832 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-0ea3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.pro-0ea3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.mini_a8f5 {
    text-align: center;
    margin-bottom: 3rem;
}

.shade_under_88cd {
    margin-bottom: 1rem;
}

.column-29d5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.dropdown-static-ab97 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dropdown-static-ab97 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .dropdown-static-ab97.hover-d6f7 {
        direction: rtl;
    }
    
    .dropdown-static-ab97.hover-d6f7 > * {
        direction: ltr;
    }
}

.dark-144a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.dark-144a:first-child {
    margin-top: 0;
}

.stone-5d1a {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.widget-85a5 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.widget-85a5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.sort-silver-f77a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-silver-f77a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_d953 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion_new_807a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.clean-45b3 {
    list-style: none;
}

.clean-45b3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-45b3 li:last-child {
    border-bottom: none;
}

/* Games Features */
.active-fdb5 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.paragraph_left_96b4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pattern-paper-e02a {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.modal_9b8e {
    margin: 2rem 0;
}

.dynamic_72ce {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.article_motion_d7f6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.current_b420 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.content-f4c2 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.blue_2777 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_2777 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-dynamic-8b36 {
    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);
}

.carousel-dynamic-8b36:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description-under-b996 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter_pro_b9ed {
    font-size: 1.5rem;
}

.soft_b689 {
    color: var(--accent-color);
    margin: 0;
}

.paragraph_0a78 {
    list-style: none;
}

.paragraph_0a78 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.paragraph_0a78 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.shade-east-2c62 {
    margin: 2rem 0;
}

.content-upper-fa91 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pro-ba12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pro-ba12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_wood_fd62 {
    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);
}

.fresh-78c3 {
    font-size: 1.25rem;
}

.video_5403 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.top_8ee9,
.complex_3c17 {
    text-align: center;
    margin: 2rem 0;
}

.liquid_fa95,
.north-0dd1 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.focus_118b {
    margin: 2rem 0;
    text-align: center;
}

.wide-37f6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wide-37f6::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;
}

.frame-new-ebd1 {
    position: relative;
    z-index: 1;
}

.feature-plasma-23da {
    margin-bottom: 1rem;
}

.icon_red_925d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.iron_1a47 {
    margin-bottom: 3rem;
}

.background_steel_6421 {
    margin-top: 3rem;
}

.inner-b9fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .inner-b9fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-b9fe .search-983f {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_7709 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-e084 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.description_9ca9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.breadcrumb-34a5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .breadcrumb-34a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb-34a5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.out_b6dc {
    margin-bottom: 1rem;
}

.tertiary_15ce img {
    margin-bottom: 1rem;
}

.element_0cbb {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-1fdb {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.paper-8f74 {
    list-style: none;
}

.paper-8f74 li {
    margin-bottom: 0.5rem;
}

.paper-8f74 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.paper-8f74 a:hover {
    color: var(--accent-color);
}

.link-6589 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video_stone_7c9a {
    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);
}

.video_stone_7c9a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cold_60d5 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.cold_60d5 p {
    margin-bottom: 0.25rem;
}

.current_f07f {
    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) {
    .current_f07f {
        flex-direction: row;
    }
}

.fast-3150 {
    text-align: center;
}

@media (min-width: 768px) {
    .fast-3150 {
        text-align: left;
    }
}

.fast-3150 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border_720b {
    font-size: 0.75rem !important;
}

.primary_purple_d0dc {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.section_94c3 {
    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);
    }
}

.primary-b7e5 {
    animation: fadeInUp 0.6s ease-out;
}

.background-mini-09d1 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.module-4fba {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-4fba {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.form_fast_7548 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_fast_7548 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-huge-2628 {
    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);
}

.status-huge-2628 .pattern-paper-e02a {
    font-size: 1.25rem;
}

.status-huge-2628 .lower-238c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.header-current-9974 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .header-current-9974 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-top-b8c7 {
    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);
}

.surface-top-b8c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-iron-f5f8 {
    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);
}

.pagination_7235 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stone_cbe3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_a19b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-9686 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-9686 .focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gas-9686 .avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.short-63b1 {
    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);
}

.title-medium-5953 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.title-medium-5953 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.title-medium-5953 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.pink_5c31 {
    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);
}

.advanced-a640 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gradient_clean_aed2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gradient_clean_aed2 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient_clean_aed2 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);
}

.gradient_clean_aed2 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gradient_clean_aed2 input::placeholder {
    color: var(--text-muted);
}

.picture_bright_40ee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dim_6957 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.dim_6957 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.caption_plasma_07ca {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.caption_plasma_07ca:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pro-ba12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-ba12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_wood_fd62 {
    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);
}

.form_wood_fd62 .fresh-78c3 {
    font-size: 1.25rem;
}

.form_wood_fd62 .video_5403 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.current-10c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_copper_2f23 {
    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_copper_2f23 .pattern-paper-e02a {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_copper_2f23 .focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_copper_2f23 .avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_prev_92bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface-13cc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.surface-13cc .shade_over_f2b8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.surface-13cc .block-advanced-7064 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-19df {
    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);
}

.bottom_2e40 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bottom_2e40 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-3a7a {
    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);
}

.article-3a7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_994f {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dirty-3127 {
    flex: 1;
}

.down-5c28 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hard-97ec {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-2cbd {
    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);
}

.gradient-2cbd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.full-e72c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-e72c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-dirty-c3bc {
    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);
}

.background-dirty-c3bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_a64f {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-aef3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fluid_3bac {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fixed_baf8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter_up_67df {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_3bae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-small-958c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component-small-958c .block_4140 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-small-958c .narrow_4005 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-b3bf {
    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);
}

.outer-f284 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_5ffc {
    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);
}

.frame_5ffc .pattern-paper-e02a {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_5ffc .focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame_5ffc .avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_94c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_94c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm-42dc {
    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);
}

.warm-42dc:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.north_100d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_100d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-4a47 {
    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);
}

.border-4a47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_fc22 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver-de13 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article_motion_d7f6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.out_1260 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.tabs_a6e5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-f089 {
    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);
}

.up-f089:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-4d31 {
    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);
}

.right-c2e8 {
    flex: 1;
}

.wrapper_medium_a58c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.message-b9c4 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.surface_down_56e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_dim_9a72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-f155 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-f155 .shade_over_f2b8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-f155 .block-advanced-7064 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_3c17 {
    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);
}

.modal_fixed_9cfd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_fixed_9cfd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.active_469f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_469f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_center_06ca {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.table_center_06ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-deee {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-8c63 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.black-e74c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.first-a9be {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert_ef0f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-3f12 {
    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);
}

.aside-dark-c26b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_d107 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm_bde5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer-f284 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_5ffc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.frame_5ffc .focused_11fe {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_5ffc .avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_8a82 {
    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);
}

.motion_ddb4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .motion_ddb4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .motion_ddb4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black_05d4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.black_05d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_93a7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid-632e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero_thick_8b2a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.aside_clean_d7a2 {
    padding: 1.5rem;
}

.summary-52bd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tooltip-b3f1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-b3f1 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;
}

.tooltip-b3f1 li:last-child {
    border-bottom: none;
}

.tooltip-b3f1 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.title-glass-e13d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-glass-e13d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old_dd48 {
    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);
}

.old_dd48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-5918 {
    font-size: 2rem;
    flex-shrink: 0;
}

.under_058a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.full-d1d9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary-46c3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.green-c62a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_new_b2db {
    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);
}

.item-in-504e {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-b92f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_8caf {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_296a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev_5499 {
    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);
}

.caption-2c84 {
    text-align: center;
}

.video-up-ddf0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dark-a4ec {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.current-bbb4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected-027b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected-027b .focused_11fe {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected-027b .avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-a6b4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup-a6b4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-a6b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south_6bac {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.south_6bac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze-f7a3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-dynamic-530d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focused_11fe {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.large_4bf7 {
    padding: 1.5rem;
}

.avatar_8a3f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.icon_aaf3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon_aaf3 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;
}

.icon_aaf3 li:last-child {
    border-bottom: none;
}

.icon_aaf3 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.pro_a89c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.paragraph-3d7a {
    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);
}

.paragraph-3d7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_7971 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo_north_d26a {
    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);
}

.gradient-iron-f5f8 {
    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;
}

.pagination_7235 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone_cbe3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_004c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-right-cb2c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info-thick-3ecb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu_b5ff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tertiary_purple_54ef {
    display: flex;
    gap: 1rem;
}

.tertiary_purple_54ef .purple-3e14 {
    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;
}

.blue-8c4a {
    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);
}

.section_solid_b594 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over_609d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over_609d 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;
}

.over_609d li:last-child {
    border-bottom: none;
}

.over_609d li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.modal_small_8ba9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_small_8ba9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_small_8ba9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-outer-038b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hover-outer-038b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue_015f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered_c2bf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.block_4140 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accent_6423 {
    font-size: 1rem;
}

.logo_4318 {
    padding: 1.5rem;
}

.narrow_4005 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.dynamic_d2c0 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dynamic_d2c0 .caption-2c84 {
    text-align: center;
}

.dynamic_d2c0 .dark-a4ec {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.dynamic_d2c0 .frame_gas_f829 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fast-05f6 {
    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);
}

.fast-05f6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.pattern-gas-b02d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-gas-b02d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_paper_47ec {
    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);
}

.disabled_paper_47ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_2834 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass-2461 {
    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);
}

.block-fresh-8547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-3a9b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_20e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-prev-b3bf {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.video-fluid-5b57 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected_c1fe {
    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);
}

.notice_iron_9f47 {
    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;
}

.notice_iron_9f47.detail_e9a9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.notice_iron_9f47.row_black_d3de {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.notice_iron_9f47.tag_current_dfca {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.notice_iron_9f47.description-under-d380 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.notice_iron_9f47.row_soft_3cd9 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hover_6ff8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered_329d {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-action-5a3b {
    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);
}

.fast-cc22 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column_prev_92bc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_prev_92bc 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;
}

.column_prev_92bc li:last-child {
    border-bottom: none;
}

.column_prev_92bc li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.narrow-01b3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .narrow-01b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .narrow-01b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_iron_fe2a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_iron_fe2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_iron_fe2a.west_a09b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .carousel_iron_fe2a.west_a09b {
        grid-column: span 3;
    }
}

.photo_963b {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.carousel_iron_fe2a.west_a09b .photo_963b {
    background: rgba(6, 182, 212, 0.1);
}

.surface-74f6 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-df9e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.carousel_iron_fe2a.west_a09b .modal-df9e {
    color: var(--info-color);
}

.info_67c8 {
    padding: 1.5rem;
    text-align: center;
}

.south_2668 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.carousel_iron_fe2a.west_a09b .south_2668 {
    color: var(--info-color);
}

.mask-easy-60eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tooltip_ce42 {
    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 */
.primary_7735 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_7735 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed_39de {
    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);
}

.fixed_39de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-next-44c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_copper_2f23 {
    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);
}

.fresh-78c3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark-ab42 {
    flex: 1;
}

.content-upper-fa91 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_last_bc62 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_gas_7c3d {
    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);
}

.button-1bcc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-8e1f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section_94c3 {
    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);
}

.list_6ed0 {
  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);
}

.list_6ed0 .caption-2c84 {
    text-align: center;
}

.list_6ed0 .video-up-ddf0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.list_6ed0 .dark-a4ec {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid_hard_437f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_e100 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_48f9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_thick_c031 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_8bd5 {
    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);
}

.action-08eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail_tall_e8aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-36d0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .silver-36d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver-36d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-3b70 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bottom-3b70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-up-fee5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.smooth-7d9e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gold_cd15 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.thumbnail-4d17 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thumbnail-4d17.badge-016c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.thumbnail-4d17.mask_03f8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.thumbnail-4d17.aside_c64f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.link-309d {
    padding: 1.5rem;
    text-align: center;
}

.focused-424c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lower_95bc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lower_95bc .search-dynamic-d5f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.feature_ea3c {
    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);
}

.feature_ea3c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hot_5d1b {
  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);
}

.inner_19f8 {
    text-align: center;
}

.inner_19f8 .video-up-ddf0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.inner_19f8 .dark-a4ec {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.layout_red_de26 { text-align: center; }
.huge_3394 { text-align: left; }
.sort-bright-5b3a { text-align: right; }

.action-dcc1 { margin-bottom: 0; }
.tertiary_ef32 { margin-bottom: 0.5rem; }
.sort-f151 { margin-bottom: 1rem; }
.small_4f67 { margin-bottom: 1.5rem; }
.gallery-504f { margin-bottom: 2rem; }

.fast_5c46 { margin-top: 0; }
.paper_bd88 { margin-top: 0.5rem; }
.active-4ddc { margin-top: 1rem; }
.black-6ad4 { margin-top: 1.5rem; }
.cool-4056 { margin-top: 2rem; }

.fn-hidden-da4c { display: none; }
.fn-visible-da4c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .fresh_54c2 {
        padding: 6rem 0 3rem;
    }
    
    .tabs-4b25 {
        text-align: center;
    }
    
    .dropdown-static-ab97 {
        text-align: center;
    }
    
    .sidebar-3a9c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .background_c9b7,
    .picture-00be,
    .wide-37f6,
    .description_9ca9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .fresh_54c2 {
        background: none;
    }
}

/* Providers Section */
.tiny-f8f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_03b1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_03b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east_03b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_5550 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_5550:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown_hot_677a {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.focused-8333 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.chip_yellow_138e {
    list-style: none;
    padding: 0;
}

.chip_yellow_138e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.chip_yellow_138e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.stone_abe9 {
    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);
}

.stone_abe9 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.dropdown-simple-ae9f {
    padding: var(--section-padding);
}

.layout_west_21fb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_west_21fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy-2a57 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.easy-2a57:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.rough_5d6e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notification_static_2506 {
    display: flex;
    flex-direction: column;
}

.detail_full_4b9f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.slow_f88f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.image-east-55a5 {
    color: var(--accent-color);
}

.header_new_10a5 {
    font-size: 1.25rem;
}

.texture_4b43 {
    margin-bottom: 1rem;
}

.texture_4b43 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tertiary_f6d2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.highlight-dark-9d78 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.caption-2c84 {
    text-align: center;
}

.video-up-ddf0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dark-a4ec {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.center-8b5f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-d98b {
    margin: 2rem 0;
}

.narrow_2b0b {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.narrow_2b0b .pattern-paper-e02a {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-motion-7650 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thick-8fdf {
    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;
}

.thick-8fdf:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fixed-ba51 {
    font-size: 2rem;
}

.row-black-d647 {
    display: flex;
    flex-direction: column;
}

.fresh-c566 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.lower_b2a7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.grid-c11d {
    padding: var(--section-padding);
}

.notification-d267 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification-d267 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification-d267 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_inner_fc2b {
    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);
}

.breadcrumb_inner_fc2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb_inner_fc2b .video-up-ddf0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.breadcrumb_inner_fc2b .dark-a4ec {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.breadcrumb_inner_fc2b .complex-088c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.form-c77a {
    margin-top: 4rem;
}

.accordion_3e0e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.purple-17ff {
    overflow-x: auto;
}

.table-clean-e35f {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-clean-e35f thead {
    background: var(--accent-color);
}

.table-clean-e35f th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.table-clean-e35f td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.table-clean-e35f tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.table-clean-e35f tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.tertiary-0c1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_0718 {
    max-width: 900px;
    margin: 0 auto;
}

.slider-a066 {
    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);
}

.slider-a066:hover {
    border-color: var(--accent-color);
}

.dropdown_rough_f7bc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dropdown_rough_f7bc h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hero-last-b948 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.slider-a066.fn-active-da4c .hero-last-b948 {
    transform: rotate(45deg);
}

.column_up_389f {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.slider-a066.fn-active-da4c .column_up_389f {
    max-height: 1000px;
}

.column_up_389f p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.video_ce59 {
    padding: var(--section-padding);
}

.title-medium-5953 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.prev-50ca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_7643 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_7643 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.orange_84f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-1d49 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.widget-full-8420 {
    font-size: 2rem;
}

.bronze-ead4 {
    color: var(--text-white);
    margin: 0;
}

.input_dynamic_0ede {
    list-style: none;
    padding: 0;
}

.input_dynamic_0ede li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input_dynamic_0ede li:last-child {
    border-bottom: none;
}

.article_7f7b {
    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);
}

.article_7f7b p {
    color: var(--success-color);
    margin: 0;
}

.list-easy-46b6 {
    margin-top: 3rem;
}

.section_solid_b594 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wrapper-ad0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper-ad0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stone-af46 {
    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);
}

.frame-47fe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stone-af46 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.pattern_dynamic_ab8e {
    padding: var(--section-padding);
}

.plasma_7196 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_7196 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_c458 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_c458:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.huge-dd2f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hard-9aa8 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.slow_e294 {
    flex: 1;
}

.iron_c2e2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.table-6ced {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.upper_b093 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_warm_acc6 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid_warm_acc6:last-child {
    border-bottom: none;
}

/* Comparison Section */
.glass-dc5c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.filter-494a {
    padding: var(--section-padding);
}

.copper-4763 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hover_5a48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_5a48 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_motion_1bf7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_lite_f07c, .photo_4413, .block-2b8c {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.block-2b8c {
    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 */
.heading_6cce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_84d4 {
    margin: 2rem 0;
}

.dropdown-c91e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-e092 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay-hovered-6a25 {
    list-style: none;
    padding: 0;
}

.overlay-hovered-6a25 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;
}

.overlay-hovered-6a25 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.overlay-hovered-6a25 li:last-child {
    border-bottom: none;
}

.accordion_warm_07d1 {
    text-align: center;
    margin-top: 2rem;
}

.tertiary-hovered-9514 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.purple_d084 {
    padding: var(--section-padding);
}

.frame_hot_0e47 {
    margin: 2rem 0;
}

.mini-cfa1 {
    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) {
    .mini-cfa1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mini-cfa1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.simple-9e37 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.logo-95c0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.disabled-over-1b64 {
    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;
}

.element-b53f {
    flex: 1;
}

.gallery-fac6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.list_purple_97ff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_complex_02c6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.column_middle_5481 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .column_middle_5481 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.description_99b1 {
    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);
}

.description_99b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description_99b1 .video-up-ddf0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_99b1 .dark-a4ec {
    color: var(--text-gray);
    font-size: 1rem;
}

.simple_d2a3 {
    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);
}

.under-e3e7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.under-e3e7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.progress_advanced_8153 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .progress_advanced_8153 {
        grid-template-columns: 1fr 1fr;
    }
}

.bottom-1153 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-86f7 {
    margin-bottom: 1.5rem;
}

.list-86f7 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.list-86f7 input,
.list-86f7 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;
}

.list-86f7 input:focus,
.list-86f7 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel_short_0210 {
    width: 100%;
    margin-top: 1rem;
}

.pro_686d {
    display: flex;
    align-items: center;
}

.button-purple-190c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.logo-outer-bbbf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.north_8495 {
    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;
}

.orange-83a5 {
    color: var(--text-gray);
}

.brown-55ba {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.slider_fluid_daa3 {
    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);
}

.slider_fluid_daa3 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.shadow-soft-8a54 {
    margin-top: 3rem;
}

.accent_bronze_508f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.caption_lower_43cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_yellow_cbe8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.nav-3a42 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-3a42:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.notification_9104 {
    padding: var(--section-padding);
}

.summary_pressed_bac8 {
    margin: 2rem 0;
}

.video_af9e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.menu_af28 {
    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;
}

.menu_af28:hover, .menu_af28.fn-active-da4c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gas_1ca3 {
    display: none;
}

.gas_1ca3.fn-active-da4c {
    display: block;
}

.frame_ad35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-black-5596 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.primary-ef67 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.primary-ef67 ul {
    list-style: none;
    padding: 0;
}

.primary-ef67 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.primary-ef67 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.picture_motion_def5 {
    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 */
.thick_312e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus_a634 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-ae69 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag_e0c3 {
    color: var(--accent-color);
    margin: 0;
}

.hover-6363 {
    display: flex;
    gap: 1.5rem;
}

.tall_b529 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.column_02f2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.overlay-inner-2905 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.overlay-inner-2905.iron-acb2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.overlay-inner-2905.image_eb0f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.overlay-inner-2905.pagination-inner-eaac {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cold-72a4 {
    margin-top: 2rem;
}

.liquid_bcd6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup_aa58 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .popup_aa58 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_slow_27f3 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.summary-over-5663 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.content_under_00a8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.sort-last-36fb {
    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 */
.first-1993 {
    padding: var(--section-padding);
}

.banner-middle-f2d8 {
    margin: 2rem 0;
}

.texture_prev_67a0 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.full_2654 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.preview-top-3f06 {
    list-style: none;
    padding: 0;
}

.preview-top-3f06 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;
}

.preview-top-3f06 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.preview-top-3f06 li:last-child {
    border-bottom: none;
}

.widget-6559 {
    margin: 2rem 0;
}

.silver-c51d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.module-fluid-2df5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module-fluid-2df5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled_6857 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-b733 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold_4bd3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.video_basic_0fd3 {
    margin-top: 2rem;
}

.down-5c28 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.element_ab3f {
    list-style: none;
    padding: 0;
}

.primary-4ded {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.primary-4ded a {
    color: var(--accent-color);
    text-decoration: none;
}

.primary-4ded a:hover {
    text-decoration: underline;
}

.advanced-9bed {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.current-480d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_pressed_a41a {
    margin: 2rem 0;
}

.wrapper-paper-b4fc {
    margin-bottom: 3rem;
}

.wrapper-paper-b4fc .thick-e092 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.menu_easy_7f35 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.overlay-lite-cfd5 {
    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);
}

.overlay-lite-cfd5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.popup-3c06 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .popup-3c06 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_c22c {
    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 */
.lower-07ff {
    padding: var(--section-padding);
}

.link_e5ec {
    margin: 2rem 0;
}

.widget_0dcd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert_5b8c {
    overflow-x: auto;
    margin: 2rem 0;
}

.gas_e517 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.block_1ebc {
    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;
}

.static_18c2 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.medium-b163 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .medium-b163 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-iron-d3c9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-iron-d3c9 .pattern-paper-e02a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.tag-iron-d3c9 .focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-f6d5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.old_cd52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_solid_bdb5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_solid_bdb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.yellow-f0fc {
    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;
}

.yellow-f0fc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pro-8dc7 {
    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);
}

.search_6cf7 {
    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;
}

.last-0012 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.row_soft_3ba3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.light-964a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.primary-bronze-e410 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-58ca {
    color: var(--text-white);
    font-weight: 600;
}

.cold_7216 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade-soft-4d86 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shade-soft-4d86 .purple-3e14 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.surface_bright_1a8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .surface_bright_1a8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-pro-2efe {
    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);
}

.layout-pro-2efe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout-pro-2efe .video-up-ddf0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-pro-2efe .dark-a4ec {
    color: var(--text-gray);
    font-size: 1rem;
}

.gallery_bright_6695 {
    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);
}

.gallery-blue-4dff {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gallery-blue-4dff strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.alert_ef0f {
    margin: 2rem 0;
}

.title-3f12 {
    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);
}

.title-3f12:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.aside-dark-c26b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.easy-047d {
    flex: 1;
}

.hard_d107 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm_bde5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.outer-f284 {
    margin: 2rem 0;
}

.frame_5ffc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_5ffc .focused_11fe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.frame_5ffc .avatar_8a3f {
    color: var(--text-gray);
    margin: 0;
}

.element_8a82 {
    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);
}

.element_8a82 .liquid_fa95 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.overlay-f6d5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.list-4d31 {
    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;
}

.right-c2e8 {
    flex: 1;
}

.message-b9c4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.surface_down_56e2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.gradient-iron-f5f8 {
    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;
}

.row-down-c52d {
    flex: 1;
}

.pagination_7235 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stone_cbe3 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.info-thick-3ecb {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.menu_b5ff {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tertiary_purple_54ef {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tertiary_purple_54ef .purple-3e14 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.blue-8c4a {
    margin-top: 2rem;
}

.blue-8c4a .section_solid_b594 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pagination-small-6415 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev_5499 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .prev_5499 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev_5499 .caption-2c84 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-bbb4 {
    margin: 2rem 0;
}

.selected-027b {
    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 */
.liquid_2893 {
    padding: var(--section-padding);
}

.large_4bf7 {
    margin-top: 1rem;
}

.icon_aaf3 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.icon_aaf3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.icon_aaf3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.lower_73fb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_417b {
    margin: 2rem 0;
}

.thumbnail-0683 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.status-middle-fcab {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.element-b2f7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.box_4676 {
    margin: 2rem 0;
}

.thumbnail-plasma-d404 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.thumbnail-plasma-d404 .thick-e092 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_steel_fca2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tag_steel_fca2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.right_8abe {
    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);
}

.pink_d9be {
    color: var(--text-white);
    font-weight: 600;
}

.cold-45d9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.texture_plasma_f73a {
    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);
}

.texture_plasma_f73a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.border_1670 {
    padding: var(--section-padding);
}

.blue-e1de {
    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;
}

.blue-e1de:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.action_79c4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action_79c4 .frame-47fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_79c4 .logo-b9f0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-lite-a27d {
    flex: 1;
}

.popup_rough_756a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature_cool_2cfb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_cool_2cfb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature_cool_2cfb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.plasma-6590 {
    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);
}

.plasma-6590 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.plasma-6590 strong {
    color: var(--warning-color);
}

/* Slots Section */
.fluid_ab41 {
    padding: var(--section-padding);
}

.filter_up_67df {
    margin: 2rem 0;
}

/* Table Games Section */
.widget_dark_82a2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_3bae {
    margin: 2rem 0;
}

.component-small-958c {
    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);
}

.component-small-958c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.component-small-958c .block_4140 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-small-958c .narrow_4005 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.component-b3bf {
    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);
}

.component-b3bf .liquid_fa95 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.fresh_44e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_gold_bf03 {
    margin: 2rem 0;
}

.container-2da1 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-east-4e41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice-2847 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.frame_west_fa83 {
    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);
}

.frame_west_fa83:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.frame_west_fa83.fn-active-da4c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_ff88 {
    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);
}

.smooth-1813 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.smooth-1813 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.clean_51b6 {
    padding: var(--section-padding);
}

.aside_2981 {
    margin: 2rem 0;
}

.picture-large-c781 {
    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);
}

.picture-large-c781:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .picture-large-c781 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.texture_8342 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.component_hovered_e6a8 {
    flex: 1;
}

.photo_outer_f155 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-5b92 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.static_920c {
    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;
}

.last_a1aa {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-18b4 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avatar-5f90 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south-2a07 {
    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;
}

.south-2a07:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hovered-7577 {
    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);
}

.current-f76e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.current-f76e strong {
    color: var(--accent-color);
}

/* New Games Section */
.orange-c10a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone_89b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .stone_89b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stone_89b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_8c7e {
    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_8c7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.border_54e2 {
    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;
}

.breadcrumb_f542 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.shadow_under_42c8 {
    font-size: 2rem;
}

.pressed_8e4e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.primary_40a6 {
    flex: 1;
}

.box_bright_6a59 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.layout_169a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.last-f9e4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip_up_0afb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form_add8 {
    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;
}

.feature_f757 {
    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;
}

.feature_f757:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.preview-ec3e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-cool-a8b9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-bf21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tabs-bf21 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_ecc8 {
    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);
}

.cool-facf {
    color: var(--text-white);
    font-weight: 600;
}

.badge_red_1bc1 {
    color: var(--accent-color);
    font-weight: 600;
}

.tabs_rough_568b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tabs_rough_568b strong {
    color: var(--accent-color);
}

/* Security Section */
.disabled-current-8896 {
    padding: var(--section-padding);
}

/* Benefits Section */
.progress-bottom-7740 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.first-d4b0 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.preview-east-23a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-dim-bfcc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.grid-a4a8 {
    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) {
    .grid-a4a8 {
        flex-direction: column;
        gap: 1rem;
    }
}

.grid-a4a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid-a4a8 .gradient-iron-f5f8 {
    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;
}

.grid-a4a8 .row-down-c52d {
    flex: 1;
}

.grid-a4a8 .pagination_7235 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.grid-a4a8 .stone_cbe3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.breadcrumb-8d22 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-8d22 .content-upper-fa91 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb-8d22 .current-10c4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-8d22 .current-10c4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-8d22 .current-10c4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border-east-6d7c {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.narrow-2d91 {
    padding: var(--section-padding);
}

.accordion_7a59 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .accordion_7a59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_ec5a {
    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);
}

.first_ec5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.first_ec5a .slider_0004 {
    font-size: 2rem;
    flex-shrink: 0;
}

.first_ec5a .next-d4b3 {
    flex: 1;
}

.first_ec5a .shade_over_f2b8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first_ec5a .list_8fa1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fluid-7b54 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-7b54 .border_left_b397 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fluid-7b54 .module_f185 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.fluid-7b54 .module_f185 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);
}

.fluid-7b54 .module_f185 li:last-child {
    border-bottom: none;
}

.fluid-7b54 .module_f185 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;
}

.fluid-7b54 .module_f185 li strong {
    color: var(--text-white);
}

.hidden-under-a9f5 {
    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);
}

.hidden-under-a9f5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hidden-under-a9f5 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.input-d343 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-brown-3090 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .block-brown-3090 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.short_24e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.short_24e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown_789c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message_easy_9a84 {
    font-size: 2rem;
}

.carousel-cold-fc75 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.inner_13d2 {
    flex: 1;
}

.pagination-plasma-8371 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-plasma-8371 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pagination-plasma-8371 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.medium-a7a4 {
    margin-top: 3rem;
}

.texture_prev_67a0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.full_2654 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-top-3f06 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-top-3f06 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.preview-top-3f06 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.preview-top-3f06 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.slider_8771 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast_ef0b {
    margin: 2rem 0;
}

.feature-2c25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.feature-2c25 .thick-e092 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-bronze-f1fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .preview-bronze-f1fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gas-297e {
    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);
}

.gas-297e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.primary-728a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tertiary-1a78 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.hero-a593 {
    padding: var(--section-padding);
}

.warm_ed91 {
    margin: 2rem 0;
}

.tooltip-fresh-576c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tooltip-fresh-576c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip-fresh-576c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_8e30 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description_8e30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny-acf2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.icon_0a9d {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.background-b0bf {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.background-b0bf.gradient_short_4439 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.media_064a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.widget_wide_a9ab {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.slow-f123 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-down-3b46 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice_cool_251c {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.notice_cool_251c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_cool_251c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tertiary_pink_e635 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_e96a {
    margin: 2rem 0;
}

.center_67ca {
    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) {
    .center_67ca {
        flex-direction: column;
        gap: 1rem;
    }
}

.center_67ca:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.center_67ca::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);
}

.smooth_eb98 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.filter-3132 {
    flex: 1;
}

.center_8619 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip-d3cc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-d3cc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.stale_78e3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-motion-e6dc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first-fca5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .first-fca5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_red_d850 {
    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);
}

.active_9dc9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.input-20c2 {
    flex: 1;
}

.carousel-upper-b92c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.module-dark-d05b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.medium_7b7e {
    margin-top: 2rem;
    text-align: center;
}

.texture-selected-6760 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture-selected-6760 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.pattern-gas-b02d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-gas-b02d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_paper_47ec {
    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);
}

.disabled_paper_47ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.disabled_paper_47ec .layout-5918 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_paper_47ec .under_058a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.disabled_paper_47ec .full-d1d9 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.disabled_paper_47ec .summary-46c3 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.dim-e005 {
    padding: var(--section-padding);
}

.glass-2461 .fast-d869 {
    flex: 1;
}

/* Promo Calendar Section */
.notice-hot-41e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_e110 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_e110 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_f6d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic_be75 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.large_778a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.left-c965 {
    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);
}

.disabled_upper_486d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.disabled-pro-eb63 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.wrapper-solid-891e {
    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);
}

.wrapper-solid-891e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper-solid-891e strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hard-2871 {
    padding: var(--section-padding);
}

.hovered_c8ff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hovered_c8ff {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_plasma_9811 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-0c2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.search_wide_ba13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_wide_ba13 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-smooth-d8ec {
    margin-top: 3rem;
}

.sort-smooth-d8ec .texture_prev_67a0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sort-smooth-d8ec .full_2654 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-smooth-d8ec .preview-top-3f06 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sort-smooth-d8ec .preview-top-3f06 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sort-smooth-d8ec .preview-top-3f06 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sort-smooth-d8ec .preview-top-3f06 li strong {
    color: var(--warning-color);
}

.dirty-8f86 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty-8f86 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.link-9c27 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_silver_945f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_silver_945f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_cold_a373 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_cold_a373 .thick-e092 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tertiary-1830 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice_6749 {
    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);
}

.notice_6749:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.layout_bronze_a250 {
    font-size: 2rem;
    flex-shrink: 0;
}

.white_5441 {
    flex: 1;
}

.modal_tiny_7c87 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.gold_b1b5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.steel-fd69 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.highlight-next-11d5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.input_south_2423 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .input_south_2423 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_4e2f {
    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);
}

.message_4e2f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.container_5900 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget-next-d6c4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.under-e3e7 {
    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);
}

.layout_outer_2030 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.layout_outer_2030 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.paragraph_0491 { 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; }
.pro-0ea3, .widget-85a5 { max-width:100%; height:auto; }

.texture_bde0, .icon-5597, .image_7bb1 { white-space:normal; }

.tabs-4b25,
.dropdown-static-ab97,
.primary_7735,
.pattern-gas-b02d,
.outer-f284,
.silver-36d0 {
  flex-wrap:wrap;
}

[class*="grid"],
.input_south_2423,
.tooltip-fresh-576c,
.inner-b9fe {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.fresh_54c2 img,
.dropdown-static-ab97 img,
.pagination_iron_9832 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.list_blue_2871, .out_c1b2,
.shade_under_88cd, .column-29d5 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.purple-17ff { width:100%; overflow-x:auto; }
.purple-17ff table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.east_03b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .east_03b1 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.widget_5550 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.notification-d267,
.logo-slow-f38f,
.active-prev-0b9f,
.prev-ae5a,
.column_middle_5481,
.input_south_2423,
.tooltip-fresh-576c,
.inner-b9fe,
.hot_5d1b,
.aside_2981,
.east_03b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .notification-d267,
  .logo-slow-f38f,
  .active-prev-0b9f,
  .prev-ae5a,
  .column_middle_5481,
  .input_south_2423,
  .tooltip-fresh-576c,
  .inner-b9fe,
  .hot_5d1b,
  .aside_2981,
  .east_03b1 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.breadcrumb_inner_fc2b,
.description_99b1,
.message_4e2f,
.search-983f,
.description_8e30,
.inner_19f8,
.picture-large-c781,
.widget_5550 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.input-d03e,
.notice_6688,
.widget_4152 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.input-d03e > *,
.notice_6688 > *,
.widget_4152 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: af5e */
.promo-block-a6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
