/* {$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;
}

.notice-13eb {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.frame_bronze_fb91 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .frame_bronze_fb91 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .frame_bronze_fb91 {
        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 */
.texture-c070 {
    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);
}

.small-72a1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .small-72a1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .hot_d7e8 {
        grid-column: 1;
    }
    
    .action-310c {
        grid-column: 2;
    }
    
    .search-4a3e {
        grid-column: 3;
    }
}

.hot_d7e8 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.hot_d7e8:hover img {
    transform: scale(1.05);
}

/* Navigation */
.current_0bb3 {
    display: none;
}

@media (min-width: 1024px) {
    .current_0bb3 {
        display: block;
    }
}

/* Grouped Navigation */
.card_a012 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu_1718 {
    position: relative;
}

.accent-white-bc83 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.menu_1718 .accent-current-5989 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.accent-current-5989 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.block_copper_1182 {
    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;
}

.block_copper_1182:hover,
.block_copper_1182.fn-active-435f {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.detail-8c4d {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .detail-8c4d {
        display: flex;
    }
}

/* Mobile Register Button */
.action-310c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .action-310c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.alert_72d1 {
    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;
}

.alert_72d1::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 */
.search-4a3e {
    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) {
    .search-4a3e {
        display: none;
    }
}

.search-4a3e span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.search-4a3e.fn-active-435f span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.search-4a3e.fn-active-435f span:nth-child(2) {
    opacity: 0;
}

.search-4a3e.fn-active-435f span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.yellow-e66c {
    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;
}

.yellow-e66c.fn-active-435f {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.texture-full-919b {
    overflow: hidden;
}

.tag-0981 {
    list-style: none;
    padding: 0.75rem 0;
}

.sort-blue-2da4 {
    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;
}

.sort-blue-2da4:hover,
.sort-blue-2da4.fn-active-435f {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.sort-blue-2da4.row-simple-4e5f {
    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;
}

.sort-blue-2da4.row-simple-4e5f::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 */
.hard-87ef {
    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;
}

.banner_f551 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.banner_f551:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.gallery_d592 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.gallery_d592:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.message_46b2 {
    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;
}

.message_46b2:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.paragraph-focused-9208 {
    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;
}

.short-b43c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.short-b43c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.table_pro_fa7f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.table_pro_fa7f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.list_blue_2c41 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.list_blue_2c41: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);
}

.popup_b30d {
    font-size: 1em;
    font-weight: 700;
}

.slow-6f97 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.block-dark-b673 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.block-dark-b673::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;
}

.light-35b4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .light-35b4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.simple-6f67 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.link_8606 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.block_dynamic_654b {
    margin-bottom: 2rem;
}

.green_ba45 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .green_ba45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-gas-578b {
    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);
}

.focus_over_aecf {
    font-size: 1.5rem;
}

.secondary-f886 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.link_edd7 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag_down_47e1 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tag_down_47e1:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gas_3e11 {
    text-align: center;
    margin-bottom: 3rem;
}

.main_55e0 {
    margin-bottom: 1rem;
}

.stale_2e26 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.description-e2a1 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .description-e2a1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .description-e2a1.plasma-a811 {
        direction: rtl;
    }
    
    .description-e2a1.plasma-a811 > * {
        direction: ltr;
    }
}

.header_full_3418 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.header_full_3418:first-child {
    margin-top: 0;
}

.dropdown-new-035c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.module_752b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.module_752b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.video-c6cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-c6cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_ff55 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-slow-f1d7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list-aba4 {
    list-style: none;
}

.list-aba4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-aba4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.action_9e99 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.sidebar_085b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fixed_282a {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.lower_22c6 {
    margin: 2rem 0;
}

.chip_e404 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.picture_b42f {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.plasma-30cb {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.aside_ee90 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.notice_b333 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_b333 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_smooth_ecd7 {
    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);
}

.tertiary_smooth_ecd7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover-e231 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.column-focused-bcb2 {
    font-size: 1.5rem;
}

.mini-0896 {
    color: var(--accent-color);
    margin: 0;
}

.menu_red_f16b {
    list-style: none;
}

.menu_red_f16b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.menu_red_f16b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.tooltip-04a0 {
    margin: 2rem 0;
}

.highlight_d303 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.preview-8083 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .preview-8083 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_60f2 {
    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);
}

.active_35b4 {
    font-size: 1.25rem;
}

.copper_172f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.preview_28bd,
.block_c143 {
    text-align: center;
    margin: 2rem 0;
}

.solid-0827,
.title-213b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.wood_b8af {
    margin: 2rem 0;
    text-align: center;
}

.progress-1894 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.progress-1894::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;
}

.tabs_south_4614 {
    position: relative;
    z-index: 1;
}

.layout-3783 {
    margin-bottom: 1rem;
}

.tabs_3ccc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.green-9910 {
    margin-bottom: 3rem;
}

.row_e679 {
    margin-top: 3rem;
}

.paragraph_out_58fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .paragraph_out_58fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_out_58fe .highlight-gas-578b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover-a673 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma-501b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.green_afb5 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.gradient-b003 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .gradient-b003 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-b003 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.video_gold_3102 {
    margin-bottom: 1rem;
}

.gold_5d1d img {
    margin-bottom: 1rem;
}

.surface-easy-0ef0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_static_7f2b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.fresh_4745 {
    list-style: none;
}

.fresh_4745 li {
    margin-bottom: 0.5rem;
}

.fresh_4745 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.fresh_4745 a:hover {
    color: var(--accent-color);
}

.section-stale-7a5f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bottom-3820 {
    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);
}

.bottom-3820:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.nav_d99a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.nav_d99a p {
    margin-bottom: 0.25rem;
}

.section_1b49 {
    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) {
    .section_1b49 {
        flex-direction: row;
    }
}

.photo_dim_b2e1 {
    text-align: center;
}

@media (min-width: 768px) {
    .photo_dim_b2e1 {
        text-align: left;
    }
}

.photo_dim_b2e1 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.down_dc99 {
    font-size: 0.75rem !important;
}

.video_upper_4f45 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-7d93 {
    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);
    }
}

.column-3dbb {
    animation: fadeInUp 0.6s ease-out;
}

.component_narrow_4ade {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.fast-02d4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast-02d4 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.stone_22ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone_22ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_f533 {
    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);
}

.down_f533 .fixed_282a {
    font-size: 1.25rem;
}

.down_f533 .wood_2982 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tall-fb19 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tall-fb19 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_2d3f {
    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);
}

.hovered_2d3f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_6f6d {
    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);
}

.grid_iron_165f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.over_bc7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-cc8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-7f75 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-7f75 .dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-7f75 .tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough_e8cd {
    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);
}

.static_a2c7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.static_a2c7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.static_a2c7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.accent-tiny-bc30 {
    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);
}

.tooltip_gold_86b2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-active-bfd5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-active-bfd5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery-active-bfd5 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);
}

.gallery-active-bfd5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gallery-active-bfd5 input::placeholder {
    color: var(--text-muted);
}

.module_606d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.title_pro_f367 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.title_pro_f367 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tag_904a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tag_904a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.preview-8083 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-8083 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_60f2 {
    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);
}

.block_60f2 .active_35b4 {
    font-size: 1.25rem;
}

.block_60f2 .copper_172f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.notification-a1b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright_1e75 {
    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);
}

.bright_1e75 .fixed_282a {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright_1e75 .dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bright_1e75 .tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_fc18 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-3708 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.down-3708 .tooltip-down-a22f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.down-3708 .widget-warm-4c15 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_c273 {
    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);
}

.banner-down-96e2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-down-96e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full-3f7a {
    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);
}

.full-3f7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_5a73 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.alert_east_d900 {
    flex: 1;
}

.pagination_hot_7c4c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pink-a4e7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination_8ed0 {
    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);
}

.pagination_8ed0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.section_silver_3778 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_silver_3778 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_light_6134 {
    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);
}

.grid_light_6134:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-up-9120 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button_02f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mask_ced3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.cool_1e4a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.rough_7b1a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-south-3e73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_motion_a799 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline_motion_a799 .progress_bronze_e31e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline_motion_a799 .dropdown-f7fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-clean-c9ae {
    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);
}

.focus-1bd4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_light_3e56 {
    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);
}

.backdrop_light_3e56 .fixed_282a {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_light_3e56 .dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_light_3e56 .tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_south_f8e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_south_f8e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_plasma_0fb5 {
    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);
}

.mask_plasma_0fb5:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.icon_under_9814 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_under_9814 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-debd {
    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);
}

.wood-debd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-b79c {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_full_7088 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture_b42f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.avatar_7e66 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notification-dda5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-e29f {
    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);
}

.background-e29f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_eba6 {
    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);
}

.search_top_0432 {
    flex: 1;
}

.huge-3430 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.status-lite-c9e4 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tag_huge_52b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-69d2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_10af {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_10af .tooltip-down-a22f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.column_10af .widget-warm-4c15 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_c143 {
    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);
}

.popup_6726 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_6726 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.overlay_8af9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_8af9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-e470 {
    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);
}

.cold-e470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_dirty_944a {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_f2fb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tabs_blue_b206 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination-96cc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo_8008 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-large-583f {
    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);
}

.green_8c00 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_0f17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale_ba53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-1bd4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_light_3e56 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.backdrop_light_3e56 .dropdown-new-88e5 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop_light_3e56 .tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-993f {
    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);
}

.icon_4b70 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_4b70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon_4b70 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-ff9a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.complex-ff9a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-d760 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.north-76d3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.wood-9075 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.icon_b585 {
    padding: 1.5rem;
}

.active-f6a0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.column_wide_6447 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_wide_6447 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_wide_6447 li:last-child {
    border-bottom: none;
}

.column_wide_6447 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.shadow-3df7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-3df7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze_c293 {
    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);
}

.bronze_c293:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_black_79de {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected_d1d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content_pressed_fffb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.form_down_334d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.banner-806a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_e058 {
    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);
}

.accordion_tiny_e67f {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_90ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.aside-a488 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-57a3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.detail-47aa {
    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);
}

.pagination-tiny-2160 {
    text-align: center;
}

.tertiary-9b30 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-aa72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.banner_brown_e57c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-focused-3e1c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-focused-3e1c .dropdown-new-88e5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-focused-3e1c .tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-green-e2e4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-green-e2e4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-green-e2e4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-7d47 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.north-7d47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_5250 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary-up-f642 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dropdown-new-88e5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.rough-c7b9 {
    padding: 1.5rem;
}

.tooltip-lite-3daa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.full_a375 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full_a375 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;
}

.full_a375 li:last-child {
    border-bottom: none;
}

.full_a375 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.header-8d4e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.image_39cb {
    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);
}

.image_39cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-1bda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-7462 {
    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);
}

.small_6f6d {
    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;
}

.grid_iron_165f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over_bc7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_30c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-6b22 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_4f8f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower_7ad5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup_bottom_cd62 {
    display: flex;
    gap: 1rem;
}

.popup_bottom_cd62 .video_aad3 {
    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;
}

.new_c5bd {
    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);
}

.table-slow-849b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel-rough-9048 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-rough-9048 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;
}

.panel-rough-9048 li:last-child {
    border-bottom: none;
}

.panel-rough-9048 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.footer-c3fe {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer-c3fe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-c3fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in_c63b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.in_c63b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-667c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.input_e544 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_bronze_e31e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.advanced_52d8 {
    font-size: 1rem;
}

.surface-16c4 {
    padding: 1.5rem;
}

.dropdown-f7fa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.background_a104 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.background_a104 .pagination-tiny-2160 {
    text-align: center;
}

.background_a104 .article-aa72 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.background_a104 .tiny-918c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature_south_e28e {
    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_south_e28e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.pagination-yellow-c1c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-yellow-c1c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-east-11c1 {
    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);
}

.column-east-11c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_47eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_f5cd {
    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);
}

.icon_brown_e3dd {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-b29d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_wood_be77 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_218f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.main-current-e008 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_809b {
    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);
}

.active_dd3c {
    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;
}

.active_dd3c.row-cc8e {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.active_dd3c.liquid-2e41 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.active_dd3c.module-a9d1 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.active_dd3c.secondary_black_b3ca {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.active_dd3c.advanced-e01a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.image-a65d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_6e2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_15a2 {
    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);
}

.notification-old-987f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sort_fc18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort_fc18 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;
}

.sort_fc18 li:last-child {
    border-bottom: none;
}

.sort_fc18 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.out_0086 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_0086 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_0086 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-basic-48f5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notice-basic-48f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-basic-48f5.in-190e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .notice-basic-48f5.in-190e {
        grid-column: span 3;
    }
}

.nav-77d9 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.notice-basic-48f5.in-190e .nav-77d9 {
    background: rgba(6, 182, 212, 0.1);
}

.active_6390 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info_23f5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.notice-basic-48f5.in-190e .info_23f5 {
    color: var(--info-color);
}

.layout_complex_9be5 {
    padding: 1.5rem;
    text-align: center;
}

.avatar_46cf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notice-basic-48f5.in-190e .avatar_46cf {
    color: var(--info-color);
}

.backdrop_brown_a9f1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-b892 {
    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 */
.popup-57cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-57cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_128a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard_128a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_stone_b98d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright_1e75 {
    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);
}

.active_35b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-in-1949 {
    flex: 1;
}

.highlight_d303 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-steel-8e19 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool-3e5a {
    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);
}

.motion-685a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wood-6a65 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-7d93 {
    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);
}

.out_2011 {
  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);
}

.out_2011 .pagination-tiny-2160 {
    text-align: center;
}

.out_2011 .tertiary-9b30 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.out_2011 .article-aa72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.right-bf17 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-bottom-7ecf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_1427 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-e413 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_plasma_7d70 {
    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);
}

.photo-mini-ec6d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button_aa34 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-2eb6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first-2eb6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first-2eb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_9d3e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dim_9d3e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-middle-f7bb {
    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);
}

.label-7b05 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo_1bd4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.chip_static_dea1 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chip_static_dea1.mask_1fb3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.chip_static_dea1.feature_37da {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.chip_static_dea1.east-1e03 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.button-upper-815b {
    padding: 1.5rem;
    text-align: center;
}

.short-9a1b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover-8424 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hover-8424 .over_bcd2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.link-bb62 {
    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);
}

.link-bb62:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article-medium-8df0 {
  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);
}

.yellow-8b54 {
    text-align: center;
}

.yellow-8b54 .tertiary-9b30 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.yellow-8b54 .article-aa72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.slow-b9da { text-align: center; }
.blue-669d { text-align: left; }
.background-8b16 { text-align: right; }

.info-iron-e795 { margin-bottom: 0; }
.column-up-dd2a { margin-bottom: 0.5rem; }
.accent-4b50 { margin-bottom: 1rem; }
.focus-4609 { margin-bottom: 1.5rem; }
.sidebar-e9cc { margin-bottom: 2rem; }

.hidden-afee { margin-top: 0; }
.title-c0c4 { margin-top: 0.5rem; }
.box_a9f8 { margin-top: 1rem; }
.middle-372b { margin-top: 1.5rem; }
.disabled-pink-93e6 { margin-top: 2rem; }

.fn-hidden-435f { display: none; }
.fn-visible-435f { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .block-dark-b673 {
        padding: 6rem 0 3rem;
    }
    
    .light-35b4 {
        text-align: center;
    }
    
    .description-e2a1 {
        text-align: center;
    }
    
    .green_ba45 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .texture-c070,
    .yellow-e66c,
    .progress-1894,
    .green_afb5 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .block-dark-b673 {
        background: none;
    }
}

/* Providers Section */
.warm_92be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_fluid_b105 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_fluid_b105 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery_fluid_b105 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under_4b9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.under_4b9d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort-lite-e8e1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.orange_dd0d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.media_68e9 {
    list-style: none;
    padding: 0;
}

.media_68e9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.media_68e9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.center_4cf9 {
    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);
}

.center_4cf9 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.focused_8d0b {
    padding: var(--section-padding);
}

.narrow-2821 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-2821 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_dirty_3e91 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature_dirty_3e91:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.next-e706 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.under-3c3d {
    display: flex;
    flex-direction: column;
}

.west-cc44 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.badge_20fe {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pagination_tiny_a97b {
    color: var(--accent-color);
}

.secondary_a36d {
    font-size: 1.25rem;
}

.item-plasma-f782 {
    margin-bottom: 1rem;
}

.item-plasma-f782 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.avatar_yellow_425c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dropdown-de96 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.pagination-tiny-2160 {
    text-align: center;
}

.tertiary-9b30 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-aa72 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.status-purple-7310 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-glass-d584 {
    margin: 2rem 0;
}

.focus-0814 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.focus-0814 .fixed_282a {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered_e467 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-55e3 {
    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;
}

.footer-55e3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination-9dcc {
    font-size: 2rem;
}

.secondary-5c8f {
    display: flex;
    flex-direction: column;
}

.column-motion-a6a7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dropdown-large-f3a9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.picture-hot-9d0e {
    padding: var(--section-padding);
}

.photo_1d1b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .photo_1d1b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_1d1b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny-3abf {
    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);
}

.tiny-3abf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tiny-3abf .tertiary-9b30 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tiny-3abf .article-aa72 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tiny-3abf .over-1c4b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.paper_cfad {
    margin-top: 4rem;
}

.glass-f90c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.image_74ad {
    overflow-x: auto;
}

.widget_c9dc {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.widget_c9dc thead {
    background: var(--accent-color);
}

.widget_c9dc th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.widget_c9dc td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_c9dc tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.widget_c9dc tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.pagination-next-497c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_4ac2 {
    max-width: 900px;
    margin: 0 auto;
}

.title-bottom-1330 {
    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);
}

.title-bottom-1330:hover {
    border-color: var(--accent-color);
}

.red-7638 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.red-7638 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.full_b2b7 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.title-bottom-1330.fn-active-435f .full_b2b7 {
    transform: rotate(45deg);
}

.caption-middle-c93b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.title-bottom-1330.fn-active-435f .caption-middle-c93b {
    max-height: 1000px;
}

.caption-middle-c93b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.banner-south-3359 {
    padding: var(--section-padding);
}

.static_a2c7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.photo-bright-53f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-c554 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright-c554 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar_under_386c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_motion_dec9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.west_8d7e {
    font-size: 2rem;
}

.overlay-thick-ee09 {
    color: var(--text-white);
    margin: 0;
}

.simple-3420 {
    list-style: none;
    padding: 0;
}

.simple-3420 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-3420 li:last-child {
    border-bottom: none;
}

.section-stale-ab16 {
    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);
}

.section-stale-ab16 p {
    color: var(--success-color);
    margin: 0;
}

.tabs-advanced-5c01 {
    margin-top: 3rem;
}

.table-slow-849b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input-fixed-d607 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input-fixed-d607 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-cb64 {
    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);
}

.easy-af0c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-cb64 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.heading-pro-4525 {
    padding: var(--section-padding);
}

.gold-6723 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-6723 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_fixed_748b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.icon_fixed_748b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery_purple_ca2b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask-a186 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.accent-next-bff5 {
    flex: 1;
}

.layout_eb8c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.card_north_beca {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.liquid-f15a {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale-b913 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stale-b913:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hidden-hard-d1f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.gallery_soft_393f {
    padding: var(--section-padding);
}

.active_solid_0724 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.detail_wood_7247 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_wood_7247 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_2c71 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_be5d, .tabs-fe95, .status-paper-5f3b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.status-paper-5f3b {
    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 */
.gold_a446 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-7611 {
    margin: 2rem 0;
}

.up_9fd9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange-b341 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tooltip-4e82 {
    list-style: none;
    padding: 0;
}

.tooltip-4e82 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;
}

.tooltip-4e82 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tooltip-4e82 li:last-child {
    border-bottom: none;
}

.gradient-outer-8b84 {
    text-align: center;
    margin-top: 2rem;
}

.mini_b990 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.simple-41b5 {
    padding: var(--section-padding);
}

.shadow_dynamic_b39f {
    margin: 2rem 0;
}

.hovered_9962 {
    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) {
    .hovered_9962 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hovered_9962:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-7739 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.grid_0e7c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.summary_medium_c75a {
    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;
}

.progress-08a9 {
    flex: 1;
}

.steel-a60d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background-bottom-2ced {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper-d911 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.menu-north-d73f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .menu-north-d73f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.content-5e69 {
    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);
}

.content-5e69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-5e69 .tertiary-9b30 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-5e69 .article-aa72 {
    color: var(--text-gray);
    font-size: 1rem;
}

.disabled_5a73 {
    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);
}

.upper_43ba {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.upper_43ba strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.narrow-c8e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .narrow-c8e9 {
        grid-template-columns: 1fr 1fr;
    }
}

.active-8763 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_under_2713 {
    margin-bottom: 1.5rem;
}

.feature_under_2713 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature_under_2713 input,
.feature_under_2713 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;
}

.feature_under_2713 input:focus,
.feature_under_2713 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.module_a337 {
    width: 100%;
    margin-top: 1rem;
}

.thick-9a88 {
    display: flex;
    align-items: center;
}

.content-5b55 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.content_clean_923d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.down-df94 {
    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;
}

.container-bd1c {
    color: var(--text-gray);
}

.in_2f42 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.full-290e {
    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);
}

.full-290e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tiny-334c {
    margin-top: 3rem;
}

.background_dynamic_dfa8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.active-bcb3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_0100 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.first-de2a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.first-de2a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.layout_e78c {
    padding: var(--section-padding);
}

.caption_7b1b {
    margin: 2rem 0;
}

.active-8923 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.right_0988 {
    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;
}

.right_0988:hover, .right_0988.fn-active-435f {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hidden_e3be {
    display: none;
}

.hidden_e3be.fn-active-435f {
    display: block;
}

.heading-6f56 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple_0f1b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bronze-d330 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.bronze-d330 ul {
    list-style: none;
    padding: 0;
}

.bronze-d330 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.bronze-d330 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.small-bbcc {
    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 */
.item_119f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-dynamic-4f2d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_b50b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dropdown-b5a2 {
    color: var(--accent-color);
    margin: 0;
}

.alert_f1cd {
    display: flex;
    gap: 1.5rem;
}

.primary-first-f712 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh-3645 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.block-5f8c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.block-5f8c.avatar-gas-b4eb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.block-5f8c.tertiary-1ad5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.block-5f8c.text_b786 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.frame_09c3 {
    margin-top: 2rem;
}

.huge_692b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout_blue_6c05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .layout_blue_6c05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-5e24 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.row-complex-3658 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pattern_large_7e75 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.pagination_warm_283d {
    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 */
.border_7e58 {
    padding: var(--section-padding);
}

.hover-wood-1ada {
    margin: 2rem 0;
}

.aside_14ee {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.top-d722 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.row_fresh_8db1 {
    list-style: none;
    padding: 0;
}

.row_fresh_8db1 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;
}

.row_fresh_8db1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.row_fresh_8db1 li:last-child {
    border-bottom: none;
}

.paper-8bba {
    margin: 2rem 0;
}

.small_c701 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.easy_e229 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .easy_e229 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thumbnail-df82 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-fast-7182 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.form_4eda {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.backdrop_top_6624 {
    margin-top: 2rem;
}

.pagination_hot_7c4c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tabs_glass_a6ec {
    list-style: none;
    padding: 0;
}

.pro-3f44 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.pro-3f44 a {
    color: var(--accent-color);
    text-decoration: none;
}

.pro-3f44 a:hover {
    text-decoration: underline;
}

.current_e573 {
    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 */
.mini_7716 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-e1fb {
    margin: 2rem 0;
}

.table-76b4 {
    margin-bottom: 3rem;
}

.table-76b4 .orange-b341 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.caption_fa61 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.module_short_5fb8 {
    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);
}

.module_short_5fb8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.label-5d62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .label-5d62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_tall_d10f {
    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 */
.highlight-9916 {
    padding: var(--section-padding);
}

.selected_b73e {
    margin: 2rem 0;
}

.right_3bfa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message-de93 {
    overflow-x: auto;
    margin: 2rem 0;
}

.carousel_5ca0 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pattern_thick_8d84 {
    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;
}

.panel_af42 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.pro_5041 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pro_5041 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_in_5341 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_in_5341 .fixed_282a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.box_in_5341 .dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_7670 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.progress-selected-22a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-lite-87c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-lite-87c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_dae4 {
    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;
}

.first_dae4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.middle-bd6e {
    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);
}

.notification_df7f {
    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;
}

.row-6675 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input-active-7d7c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.row_hard_f9cc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.dynamic-dcb0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-copper-0a35 {
    color: var(--text-white);
    font-weight: 600;
}

.item-static-5fe1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tooltip_advanced_a78c {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_advanced_a78c .video_aad3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo-rough-6fde {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-rough-6fde {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-b2c5 {
    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);
}

.photo-b2c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo-b2c5 .tertiary-9b30 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo-b2c5 .article-aa72 {
    color: var(--text-gray);
    font-size: 1rem;
}

.aside_ff27 {
    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);
}

.item_up_01cf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.item_up_01cf strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.photo_8008 {
    margin: 2rem 0;
}

.description-large-583f {
    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);
}

.description-large-583f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.green_8c00 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search-pressed-82ea {
    flex: 1;
}

.frame_0f17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale_ba53 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.focus-1bd4 {
    margin: 2rem 0;
}

.backdrop_light_3e56 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_light_3e56 .dropdown-new-88e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.backdrop_light_3e56 .tooltip-lite-3daa {
    color: var(--text-gray);
    margin: 0;
}

.highlight-993f {
    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);
}

.highlight-993f .solid-0827 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.avatar_7670 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.tertiary_eba6 {
    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;
}

.search_top_0432 {
    flex: 1;
}

.status-lite-c9e4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tag_huge_52b9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.small_6f6d {
    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;
}

.wrapper_large_165e {
    flex: 1;
}

.grid_iron_165f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.over_bc7e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.sidebar_4f8f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.lower_7ad5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.popup_bottom_cd62 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.popup_bottom_cd62 .video_aad3 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.new_c5bd {
    margin-top: 2rem;
}

.new_c5bd .table-slow-849b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pattern-adb9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-47aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail-47aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-47aa .pagination-tiny-2160 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_brown_e57c {
    margin: 2rem 0;
}

.filter-focused-3e1c {
    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 */
.tertiary-d804 {
    padding: var(--section-padding);
}

.rough-c7b9 {
    margin-top: 1rem;
}

.full_a375 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.full_a375 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.full_a375 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hover-6382 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-8478 {
    margin: 2rem 0;
}

.column-mini-2278 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.search_hot_ceb0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.carousel_d271 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.row-huge-b3a7 {
    margin: 2rem 0;
}

.column_current_e461 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.column_current_e461 .orange-b341 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty-4e0a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dirty-4e0a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-10e4 {
    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);
}

.tiny-0750 {
    color: var(--text-white);
    font-weight: 600;
}

.dropdown-c44e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.inner-8055 {
    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);
}

.inner-8055 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.filter_dynamic_3fee {
    padding: var(--section-padding);
}

.picture-071b {
    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;
}

.picture-071b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.border_bc62 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border_bc62 .easy-af0c {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_bc62 .label-orange-a720 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button-aa3e {
    flex: 1;
}

.search-simple-d25e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.avatar-east-3ad1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-east-3ad1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.avatar-east-3ad1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fixed_1285 {
    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);
}

.fixed_1285 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed_1285 strong {
    color: var(--warning-color);
}

/* Slots Section */
.fresh-82c5 {
    padding: var(--section-padding);
}

.rough_7b1a {
    margin: 2rem 0;
}

/* Table Games Section */
.light_10c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-south-3e73 {
    margin: 2rem 0;
}

.outline_motion_a799 {
    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);
}

.outline_motion_a799:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.outline_motion_a799 .progress_bronze_e31e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline_motion_a799 .dropdown-f7fa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu-clean-c9ae {
    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);
}

.menu-clean-c9ae .solid-0827 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.preview_4cc3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_mini_866c {
    margin: 2rem 0;
}

.summary_01db {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_dark_1a5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow_4ec2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline_5925 {
    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);
}

.outline_5925:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.outline_5925.fn-active-435f {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-14f2 {
    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);
}

.column-9d6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column-9d6b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.article-motion-1a8b {
    padding: var(--section-padding);
}

.carousel-slow-4289 {
    margin: 2rem 0;
}

.nav-9855 {
    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);
}

.nav-9855:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .nav-9855 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.north_9d5c {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.out-1753 {
    flex: 1;
}

.description-first-15f5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_fcbf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary-focused-8633 {
    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;
}

.article_5fea {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.search-active-05ec {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rough-e756 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-6b24 {
    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;
}

.primary-6b24:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tall-5eaa {
    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);
}

.backdrop-3ade {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop-3ade strong {
    color: var(--accent-color);
}

/* New Games Section */
.logo-6663 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_north_204a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tooltip_north_204a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip_north_204a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-f079 {
    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;
}

.chip-f079:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.current_47cf {
    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;
}

.dynamic_6c82 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.bottom-8df6 {
    font-size: 2rem;
}

.header-fresh-5d80 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.photo_00f4 {
    flex: 1;
}

.status-focused-ff71 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.title_ea24 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.header_fb6d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-prev-6fbd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.old_8cf5 {
    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;
}

.solid_1dbc {
    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;
}

.solid_1dbc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tag_dim_e2ac {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_35ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.new-f635 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .new-f635 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_hovered_9677 {
    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);
}

.carousel_current_a4da {
    color: var(--text-white);
    font-weight: 600;
}

.logo-627e {
    color: var(--accent-color);
    font-weight: 600;
}

.summary-selected-03ae {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.summary-selected-03ae strong {
    color: var(--accent-color);
}

/* Security Section */
.notice_04f7 {
    padding: var(--section-padding);
}

/* Benefits Section */
.detail_d502 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.last_e0f9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.card-west-aed8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_c57d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.overlay_58d5 {
    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) {
    .overlay_58d5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.overlay_58d5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.overlay_58d5 .small_6f6d {
    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;
}

.overlay_58d5 .wrapper_large_165e {
    flex: 1;
}

.overlay_58d5 .grid_iron_165f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.overlay_58d5 .over_bc7e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus_b78e {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_b78e .highlight_d303 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus_b78e .notification-a1b4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_b78e .notification-a1b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus_b78e .notification-a1b4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hover-6d47 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.texture-brown-4a20 {
    padding: var(--section-padding);
}

.slow-fbd0 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .slow-fbd0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_5034 {
    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);
}

.badge_5034:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.badge_5034 .video-e2e1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_5034 .border_under_184f {
    flex: 1;
}

.badge_5034 .tooltip-down-a22f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge_5034 .narrow_7bc6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pink-0e9f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-0e9f .surface-bronze-0743 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink-0e9f .nav_fresh_c6e0 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.pink-0e9f .nav_fresh_c6e0 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);
}

.pink-0e9f .nav_fresh_c6e0 li:last-child {
    border-bottom: none;
}

.pink-0e9f .nav_fresh_c6e0 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;
}

.pink-0e9f .nav_fresh_c6e0 li strong {
    color: var(--text-white);
}

.layout_wood_cb5f {
    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);
}

.layout_wood_cb5f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_wood_cb5f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.fluid_2361 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-fresh-da4e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-fresh-da4e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline-thick-4842 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline-thick-4842:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.middle-be85 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bec2 {
    font-size: 2rem;
}

.button-over-1eeb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dirty-4db0 {
    flex: 1;
}

.narrow_729a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.narrow_729a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.narrow_729a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.red-689d {
    margin-top: 3rem;
}

.aside_14ee {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.top-d722 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_fresh_8db1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row_fresh_8db1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.row_fresh_8db1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.row_fresh_8db1 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.wrapper_596b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-bb11 {
    margin: 2rem 0;
}

.dropdown_middle_1e78 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dropdown_middle_1e78 .orange-b341 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rough_5607 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rough_5607 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_b12a {
    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);
}

.hard_b12a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.slider_20d1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.heading_8afe {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tall_a11c {
    padding: var(--section-padding);
}

.last-c1fa {
    margin: 2rem 0;
}

.footer-2e8f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-2e8f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-2e8f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-d7bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent-d7bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message-5f2e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.under_cad1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.wrapper-silver-25c7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper-silver-25c7.avatar_5687 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hero_copper_3ce8 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.large-4f1f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.black_c57d {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-4b90 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fresh_fe5a {
    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);
}

.fresh_fe5a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fresh_fe5a strong {
    color: var(--accent-color);
}

/* Update Log Section */
.frame-7826 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-hovered-3e8f {
    margin: 2rem 0;
}

.sidebar-under-4120 {
    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) {
    .sidebar-under-4120 {
        flex-direction: column;
        gap: 1rem;
    }
}

.sidebar-under-4120:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar-under-4120::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);
}

.white-9877 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail_selected_0252 {
    flex: 1;
}

.down-9885 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.prev_19a4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prev_19a4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.column-006b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_8df1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer_0da3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outer_0da3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-south-3ead {
    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);
}

.gradient_hard_30f4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cold_52ac {
    flex: 1;
}

.search_rough_e6ee {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.pattern-b80e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.large-b3b2 {
    margin-top: 2rem;
    text-align: center;
}

.description_f8c9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_f8c9 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.pagination-yellow-c1c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-yellow-c1c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-east-11c1 {
    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);
}

.column-east-11c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column-east-11c1 .info_black_79de {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-east-11c1 .selected_d1d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.column-east-11c1 .content_pressed_fffb {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.column-east-11c1 .form_down_334d {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.tag_orange_77b9 {
    padding: var(--section-padding);
}

.banner_f5cd .frame_white_f696 {
    flex: 1;
}

/* Promo Calendar Section */
.copper_2671 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_under_07e1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_under_07e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_5a1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-bright-bf70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.gallery_bdca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fast-f101 {
    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);
}

.slider_35f6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-8d9a {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.banner_white_c0e6 {
    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);
}

.banner_white_c0e6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner_white_c0e6 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.east_f86f {
    padding: var(--section-padding);
}

.hidden_4fc9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden_4fc9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.east_d4f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-6575 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.static-5d85 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-5d85 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.container_dim_cad9 {
    margin-top: 3rem;
}

.container_dim_cad9 .aside_14ee {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container_dim_cad9 .top-d722 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_dim_cad9 .row_fresh_8db1 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.container_dim_cad9 .row_fresh_8db1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container_dim_cad9 .row_fresh_8db1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container_dim_cad9 .row_fresh_8db1 li strong {
    color: var(--warning-color);
}

.tabs-6006 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-6006 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.hovered-429f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow_08b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_08b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_59f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_59f6 .orange-b341 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.photo-hard-dc19 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prev-c20d {
    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);
}

.prev-c20d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wide-0101 {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_f56e {
    flex: 1;
}

.accent_easy_a195 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.dropdown-yellow-fb46 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notice-06c8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.list_white_801c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.orange_b107 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .orange_b107 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim_30d4 {
    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);
}

.dim_30d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_f299 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old_23f1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.upper_43ba {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_b06b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.column_b06b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.frame_bronze_fb91 { 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; }
.tag_down_47e1, .module_752b { max-width:100%; height:auto; }

.hard-87ef, .message_46b2, .paragraph-focused-9208 { white-space:normal; }

.light-35b4,
.description-e2a1,
.popup-57cb,
.pagination-yellow-c1c6,
.focus-1bd4,
.first-2eb6 {
  flex-wrap:wrap;
}

[class*="grid"],
.orange_b107,
.footer-2e8f,
.paragraph_out_58fe {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.block-dark-b673 img,
.description-e2a1 img,
.link_edd7 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.simple-6f67, .link_8606,
.main_55e0, .stale_2e26 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.image_74ad { width:100%; overflow-x:auto; }
.image_74ad table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.gallery_fluid_b105 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .gallery_fluid_b105 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.under_4b9d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.photo_1d1b,
.hidden-be9f,
.north_0046,
.panel_over_73d3,
.menu-north-d73f,
.orange_b107,
.footer-2e8f,
.paragraph_out_58fe,
.article-medium-8df0,
.carousel-slow-4289,
.gallery_fluid_b105 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .photo_1d1b,
  .hidden-be9f,
  .north_0046,
  .panel_over_73d3,
  .menu-north-d73f,
  .orange_b107,
  .footer-2e8f,
  .paragraph_out_58fe,
  .article-medium-8df0,
  .carousel-slow-4289,
  .gallery_fluid_b105 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tiny-3abf,
.content-5e69,
.dim_30d4,
.highlight-gas-578b,
.accent-d7bc,
.yellow-8b54,
.nav-9855,
.under_4b9d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hero-dirty-fe8f,
.blue_1474,
.paragraph-331e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-dirty-fe8f > *,
.blue_1474 > *,
.paragraph-331e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: b48f */
.widget-item-p2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
