/* {$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;
}

.hover-green-0e4f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.motion-b430 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .motion-b430 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .motion-b430 {
        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 */
.video-6445 {
    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);
}

.icon_green_b314 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .icon_green_b314 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .border_4448 {
        grid-column: 1;
    }
    
    .hovered-beab {
        grid-column: 2;
    }
    
    .up_151d {
        grid-column: 3;
    }
}

.border_4448 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.border_4448:hover img {
    transform: scale(1.05);
}

/* Navigation */
.content_red_24ae {
    display: none;
}

@media (min-width: 1024px) {
    .content_red_24ae {
        display: block;
    }
}

/* Grouped Navigation */
.light_a33f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.card_advanced_ecb6 {
    position: relative;
}

.warm-8842 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.card_advanced_ecb6 .cool_8723 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.cool_8723 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.advanced-b79b {
    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;
}

.advanced-b79b:hover,
.advanced-b79b.fn-active-3893 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.soft-ae01 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .soft-ae01 {
        display: flex;
    }
}

/* Mobile Register Button */
.hovered-beab {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hovered-beab {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.medium_71e7 {
    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;
}

.medium_71e7::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 */
.up_151d {
    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) {
    .up_151d {
        display: none;
    }
}

.up_151d span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.up_151d.fn-active-3893 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.up_151d.fn-active-3893 span:nth-child(2) {
    opacity: 0;
}

.up_151d.fn-active-3893 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-fffa {
    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;
}

.sidebar-fffa.fn-active-3893 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.button_6367 {
    overflow: hidden;
}

.shadow-ce01 {
    list-style: none;
    padding: 0.75rem 0;
}

.bronze-82a3 {
    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;
}

.bronze-82a3:hover,
.bronze-82a3.fn-active-3893 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.bronze-82a3.caption-f0f0 {
    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;
}

.bronze-82a3.caption-f0f0::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 */
.video_iron_89a3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.header_ee5b {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header_ee5b:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.paragraph_b03e {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.paragraph_b03e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fresh_0cd2 {
    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;
}

.fresh_0cd2:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.label_inner_be1a {
    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;
}

.frame_silver_0628 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.frame_silver_0628:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.static-eb21 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.static-eb21:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focused-1692 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focused-1692: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);
}

.white_64dc {
    font-size: 1em;
    font-weight: 700;
}

.selected_5a86 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.outer-c1fd {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.outer-c1fd::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;
}

.white-a2bd {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .white-a2bd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.notice-1cd9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.heading_narrow_8a2c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.first-30f5 {
    margin-bottom: 2rem;
}

.heading_black_5204 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .heading_black_5204 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fresh_2fdc {
    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);
}

.wrapper_32d6 {
    font-size: 1.5rem;
}

.light-452a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wide_25f3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-prev-888c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.image-prev-888c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.column_c00d {
    text-align: center;
    margin-bottom: 3rem;
}

.link_wide_7370 {
    margin-bottom: 1rem;
}

.accent-e49e {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hover_black_a762 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hover_black_a762 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hover_black_a762.main-0934 {
        direction: rtl;
    }
    
    .hover_black_a762.main-0934 > * {
        direction: ltr;
    }
}

.content_b023 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content_b023:first-child {
    margin-top: 0;
}

.highlight-7472 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.short_b939 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.short_b939:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.shadow-eeb4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-eeb4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_d429 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-mini-e7f3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb_inner_b885 {
    list-style: none;
}

.breadcrumb_inner_b885 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_inner_b885 li:last-child {
    border-bottom: none;
}

/* Games Features */
.out-85aa {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.media_a819 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.black_c87a {
    font-size: 2rem;
    flex-shrink: 0;
}

.west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.menu-5636 {
    margin: 2rem 0;
}

.red_7662 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.stale-4e1a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.surface_f5c1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.highlight_c308 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.dark_1474 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark_1474 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown-efc6 {
    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);
}

.brown-efc6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover-9359 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.header_paper_0115 {
    font-size: 1.5rem;
}

.wrapper_advanced_3d4d {
    color: var(--accent-color);
    margin: 0;
}

.chip-solid-0266 {
    list-style: none;
}

.chip-solid-0266 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.chip-solid-0266 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.hover_edc2 {
    margin: 2rem 0;
}

.popup_gold_1582 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.chip-motion-acf1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .chip-motion-acf1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_steel_cec6 {
    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);
}

.bottom-d226 {
    font-size: 1.25rem;
}

.grid_6249 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.widget-7ea4,
.pro_9451 {
    text-align: center;
    margin: 2rem 0;
}

.notification-5613,
.alert-2aee {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.button-ecae {
    margin: 2rem 0;
    text-align: center;
}

.footer-green-14a0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-green-14a0::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;
}

.alert-0a0f {
    position: relative;
    z-index: 1;
}

.video_d76b {
    margin-bottom: 1rem;
}

.thumbnail_8597 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.down_3a98 {
    margin-bottom: 3rem;
}

.orange_ed93 {
    margin-top: 3rem;
}

.component-west-2f31 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .component-west-2f31 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-west-2f31 .fresh_2fdc {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bronze_8f72 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short-103a {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.purple_fad6 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.menu-tall-778a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .menu-tall-778a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-tall-778a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.panel-focused-88b4 {
    margin-bottom: 1rem;
}

.chip_static_ef70 img {
    margin-bottom: 1rem;
}

.iron-ff23 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-efe1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.surface-569d {
    list-style: none;
}

.surface-569d li {
    margin-bottom: 0.5rem;
}

.surface-569d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.surface-569d a:hover {
    color: var(--accent-color);
}

.breadcrumb-plasma-e69b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.active-short-03f7 {
    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);
}

.active-short-03f7:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.block-pink-3adf {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.block-pink-3adf p {
    margin-bottom: 0.25rem;
}

.new_21e9 {
    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) {
    .new_21e9 {
        flex-direction: row;
    }
}

.selected_c78d {
    text-align: center;
}

@media (min-width: 768px) {
    .selected_c78d {
        text-align: left;
    }
}

.selected_c78d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.next-aa50 {
    font-size: 0.75rem !important;
}

.carousel-full-135d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.border_da14 {
    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);
    }
}

.pagination-083c {
    animation: fadeInUp 0.6s ease-out;
}

.mini-1f09 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.fixed-a87f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-a87f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hidden-b87b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-b87b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-5e18 {
    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);
}

.in-5e18 .black_c87a {
    font-size: 1.25rem;
}

.in-5e18 .fresh_9a55 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.down_174d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .down_174d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_ad15 {
    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);
}

.list_ad15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort_slow_669a {
    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);
}

.badge_3683 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass_4d1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.large_31cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-over-9714 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover-over-9714 .west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover-over-9714 .dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_1595 {
    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);
}

.glass-b5af {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.glass-b5af img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.glass-b5af img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.narrow-a366 {
    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);
}

.copper-35ee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mask-afbe {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mask-afbe label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask-afbe 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);
}

.mask-afbe input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask-afbe input::placeholder {
    color: var(--text-muted);
}

.south-8e9c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.focused-d251 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.focused-d251 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.accordion_490d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.accordion_490d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.chip-motion-acf1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-motion-acf1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_steel_cec6 {
    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);
}

.sidebar_steel_cec6 .bottom-d226 {
    font-size: 1.25rem;
}

.sidebar_steel_cec6 .grid_6249 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.rough-2da8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-1623 {
    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);
}

.title-1623 .black_c87a {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-1623 .west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-1623 .dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_8e14 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-5d68 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.last-5d68 .full_08a6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last-5d68 .dropdown_prev_b1cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic_ba75 {
    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);
}

.border_891f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border_891f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_f51b {
    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);
}

.search_f51b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in-b1aa {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.detail-93a0 {
    flex: 1;
}

.active-5287 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.top-930e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.smooth_af1e {
    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);
}

.smooth_af1e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.progress-f0cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-f0cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-gold-10fb {
    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);
}

.row-gold-10fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_simple_59b0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-3277 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.red_ead1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column_7dc4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.texture-fresh-67c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-top-c788 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-yellow-902b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.aside-yellow-902b .orange-5272 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-yellow-902b .light_8fa7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_9dce {
    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);
}

.picture-under-b7f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-1cd6 {
    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);
}

.button-1cd6 .black_c87a {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-1cd6 .west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button-1cd6 .dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_a77c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_a77c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_9930 {
    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);
}

.image_9930:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.gas_a6f5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas_a6f5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge_6eca {
    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);
}

.huge_6eca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh-3523 {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev-677b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stale-4e1a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.notice_bb0a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.wrapper_light_e7e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh-9cae {
    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);
}

.fresh-9cae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_6b7c {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.hovered_331e {
    flex: 1;
}

.footer_short_77cb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.narrow_1df2 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.paragraph_south_6f6e {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_ed26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-6259 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-6259 .full_08a6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.new-6259 .dropdown_prev_b1cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro_9451 {
    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);
}

.feature_07f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_07f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.south_a5fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_a5fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_orange_d728 {
    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);
}

.tertiary_orange_d728:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-6ff6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev-66fc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aside_ef2b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion_bright_3d22 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_e3c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red-0daf {
    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);
}

.small_ebd5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-hard-cc2b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-53be {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-under-b7f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-1cd6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.button-1cd6 .west_8c51 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button-1cd6 .dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-db5d {
    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);
}

.complex-89ec {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .complex-89ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex-89ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_22d8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro_22d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough_e35f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.component_c7cc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right-e98c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.huge_b138 {
    padding: 1.5rem;
}

.banner_middle_0228 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-easy-863f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-easy-863f 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;
}

.slider-easy-863f li:last-child {
    border-bottom: none;
}

.slider-easy-863f li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.accordion_pressed_6018 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_pressed_6018 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_ff58 {
    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);
}

.hero_ff58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-north-e047 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool-e538 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element_blue_0063 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.info_e477 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thick-9f2f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-d88b {
    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);
}

.layout-large-14e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-ad44 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard_60f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_7a5c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module-fluid-e70a {
    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);
}

.east_cb81 {
    text-align: center;
}

.wide_7dd3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.search-full-73aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_a90f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_a90f .west_8c51 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_a90f .dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_selected_8d78 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_selected_8d78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_selected_8d78 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_1510 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paragraph_1510:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-6c9c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active-current-0c95 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.west_8c51 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.photo-hard-3cdd {
    padding: 1.5rem;
}

.dynamic_b5db {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail-f9b9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-f9b9 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;
}

.detail-f9b9 li:last-child {
    border-bottom: none;
}

.detail-f9b9 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.shade_7ca0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.chip-8e3a {
    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);
}

.chip-8e3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-7f02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_0f5d {
    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);
}

.sort_slow_669a {
    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;
}

.badge_3683 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass_4d1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_58c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold-e676 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-9f09 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_f5a5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.row_8813 {
    display: flex;
    gap: 1rem;
}

.row_8813 .sidebar_3256 {
    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;
}

.mini-d6f2 {
    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);
}

.sort_bright_43a8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.block-a0d7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-a0d7 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;
}

.block-a0d7 li:last-child {
    border-bottom: none;
}

.block-a0d7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.sort_first_7ee2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_first_7ee2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_first_7ee2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-d7c3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar-d7c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex-280c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma-1173 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange-5272 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.form-1e20 {
    font-size: 1rem;
}

.content_east_d3e3 {
    padding: 1.5rem;
}

.light_8fa7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hovered_ee22 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hovered_ee22 .east_cb81 {
    text-align: center;
}

.hovered_ee22 .component-dynamic-0725 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hovered_ee22 .caption_wide_d78e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.glass-15df {
    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);
}

.glass-15df:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.sidebar_9fe9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_9fe9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_6825 {
    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);
}

.element_6825:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop-2116 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-bc44 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_2071 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_81fb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal_4a4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_dbe4 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid_center_22a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-0cbf {
    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);
}

.picture_cddd {
    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;
}

.picture_cddd.mini_c8b8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.picture_cddd.secondary-pro-7a9b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.picture_cddd.tag_cool_235e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.picture_cddd.item_a92f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.picture_cddd.in_3157 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.first_3315 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary-d7f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered-dd48 {
    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);
}

.section_cold_cac3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.mini_8e14 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini_8e14 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;
}

.mini_8e14 li:last-child {
    border-bottom: none;
}

.mini_8e14 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.alert_green_77b2 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert_green_77b2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_green_77b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action_29e6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.action_29e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action_29e6.badge_upper_dcf3 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .action_29e6.badge_upper_dcf3 {
        grid-column: span 3;
    }
}

.gallery-selected-623d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.action_29e6.badge_upper_dcf3 .gallery-selected-623d {
    background: rgba(6, 182, 212, 0.1);
}

.red_7ab8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.search-3ca3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.action_29e6.badge_upper_dcf3 .search-3ca3 {
    color: var(--info-color);
}

.avatar-hard-8d1f {
    padding: 1.5rem;
    text-align: center;
}

.badge_08e1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.action_29e6.badge_upper_dcf3 .badge_08e1 {
    color: var(--info-color);
}

.container_5380 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wide_d932 {
    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 */
.mask-huge-0f91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-huge-0f91 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_huge_2d84 {
    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);
}

.container_huge_2d84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_9979 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-1623 {
    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);
}

.bottom-d226 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_774f {
    flex: 1;
}

.popup_gold_1582 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-under-7e67 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-large-892b {
    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);
}

.left_b522 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline_d08e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.border_da14 {
    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);
}

.up-c3a5 {
  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);
}

.up-c3a5 .east_cb81 {
    text-align: center;
}

.up-c3a5 .wide_7dd3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.up-c3a5 .component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_0230 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-c2a1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small_999e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-d3c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_5c92 {
    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);
}

.panel-d225 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-stone-7fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-easy-0f72 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification-easy-0f72 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification-easy-0f72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-38d5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element-38d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-42ba {
    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);
}

.main_yellow_15f7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.smooth_40ab {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.image-bright-be85 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-bright-be85.rough-bf73 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.image-bright-be85.paper-5f4c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.image-bright-be85.large_fc8f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.accordion_809c {
    padding: 1.5rem;
    text-align: center;
}

.grid_up_71ec {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature_stone_cda3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature_stone_cda3 .list_7f27 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.card_silver_6250 {
    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);
}

.card_silver_6250:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.huge_685d {
  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);
}

.grid-over-8772 {
    text-align: center;
}

.grid-over-8772 .wide_7dd3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.grid-over-8772 .component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.avatar-outer-ae80 { text-align: center; }
.simple_0d3e { text-align: left; }
.item_11eb { text-align: right; }

.logo-fluid-d5a0 { margin-bottom: 0; }
.tertiary_7a13 { margin-bottom: 0.5rem; }
.alert_fixed_ac00 { margin-bottom: 1rem; }
.small_9ee6 { margin-bottom: 1.5rem; }
.box-b11b { margin-bottom: 2rem; }

.sidebar-5053 { margin-top: 0; }
.container-48c7 { margin-top: 0.5rem; }
.picture_9970 { margin-top: 1rem; }
.menu-lite-eb4f { margin-top: 1.5rem; }
.nav_3b6c { margin-top: 2rem; }

.fn-hidden-3893 { display: none; }
.fn-visible-3893 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .outer-c1fd {
        padding: 6rem 0 3rem;
    }
    
    .white-a2bd {
        text-align: center;
    }
    
    .hover_black_a762 {
        text-align: center;
    }
    
    .heading_black_5204 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .video-6445,
    .sidebar-fffa,
    .footer-green-14a0,
    .purple_fad6 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .outer-c1fd {
        background: none;
    }
}

/* Providers Section */
.pattern-bright-dcc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium-3017 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .medium-3017 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium-3017 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.last-c9c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last-c9c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium_ea11 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar_dynamic_95c3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.silver_ae6b {
    list-style: none;
    padding: 0;
}

.silver_ae6b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.silver_ae6b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.secondary-tiny-2cee {
    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);
}

.secondary-tiny-2cee p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.focused_acd3 {
    padding: var(--section-padding);
}

.advanced-7431 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced-7431 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-57a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main-57a0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-a4a6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.outline_active_13a4 {
    display: flex;
    flex-direction: column;
}

.solid_9f8f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.silver_7c94 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.layout-red-6254 {
    color: var(--accent-color);
}

.active-9a17 {
    font-size: 1.25rem;
}

.filter-c259 {
    margin-bottom: 1rem;
}

.filter-c259 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.north_2178 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-steel-d86b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.east_cb81 {
    text-align: center;
}

.wide_7dd3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.backdrop-up-1e0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_0fe1 {
    margin: 2rem 0;
}

.light-2594 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.light-2594 .black_c87a {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny-d555 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.motion_dcba {
    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;
}

.motion_dcba:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_6d88 {
    font-size: 2rem;
}

.left-7223 {
    display: flex;
    flex-direction: column;
}

.picture-5b7c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.block-f947 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.content-f3e2 {
    padding: var(--section-padding);
}

.gradient_dark_4fcf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gradient_dark_4fcf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_dark_4fcf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-3028 {
    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);
}

.icon-3028:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-3028 .wide_7dd3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.icon-3028 .component-dynamic-0725 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.icon-3028 .block-pink-c197 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.sidebar-ecca {
    margin-top: 4rem;
}

.chip-fluid-a649 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.card_e615 {
    overflow-x: auto;
}

.breadcrumb_7a21 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.breadcrumb_7a21 thead {
    background: var(--accent-color);
}

.breadcrumb_7a21 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.breadcrumb_7a21 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_7a21 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.breadcrumb_7a21 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.box-static-ca72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-a63b {
    max-width: 900px;
    margin: 0 auto;
}

.full_d060 {
    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);
}

.full_d060:hover {
    border-color: var(--accent-color);
}

.description_992e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.description_992e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.title-smooth-b13b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.full_d060.fn-active-3893 .title-smooth-b13b {
    transform: rotate(45deg);
}

.prev_3c69 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.full_d060.fn-active-3893 .prev_3c69 {
    max-height: 1000px;
}

.prev_3c69 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.feature_focused_7da1 {
    padding: var(--section-padding);
}

.glass-b5af {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tertiary-1765 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-action-f4db {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-action-f4db {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-mini-48a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_7b75 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.background-light-bf06 {
    font-size: 2rem;
}

.outline_pink_fe9b {
    color: var(--text-white);
    margin: 0;
}

.detail-a00c {
    list-style: none;
    padding: 0;
}

.detail-a00c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-a00c li:last-child {
    border-bottom: none;
}

.disabled_6920 {
    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);
}

.disabled_6920 p {
    color: var(--success-color);
    margin: 0;
}

.card-over-d620 {
    margin-top: 3rem;
}

.sort_bright_43a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.north_78e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .north_78e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.warm-fef8 {
    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);
}

.over_ce39 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warm-fef8 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.paper-e86e {
    padding: var(--section-padding);
}

.dropdown_7f7e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_7f7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-7c6c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion-7c6c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hover-4e15 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery_up_ad25 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.clean_99b0 {
    flex: 1;
}

.slow_b995 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.form_2e9a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.tabs-7933 {
    color: var(--text-gray);
    line-height: 1.6;
}

.large-5145 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.large-5145:last-child {
    border-bottom: none;
}

/* Comparison Section */
.lower-1722 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.notification-e408 {
    padding: var(--section-padding);
}

.message_silver_045a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.secondary_f6fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_f6fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic-935c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-white-2bfe, .hard-f80c, .gradient-9ed7 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.gradient-9ed7 {
    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 */
.active-liquid-e6f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_cba5 {
    margin: 2rem 0;
}

.surface-active-5b4c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_dynamic_06d7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shadow-green-3691 {
    list-style: none;
    padding: 0;
}

.shadow-green-3691 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;
}

.shadow-green-3691 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.shadow-green-3691 li:last-child {
    border-bottom: none;
}

.section_fresh_7ff6 {
    text-align: center;
    margin-top: 2rem;
}

.current-0573 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.article_230c {
    padding: var(--section-padding);
}

.inner_a5a7 {
    margin: 2rem 0;
}

.plasma_fc36 {
    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) {
    .plasma_fc36 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.plasma_fc36:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.last_e5b4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.caption_06bb {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.text-thick-dd17 {
    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;
}

.logo_c24c {
    flex: 1;
}

.element-rough-1e3b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tiny-ad8c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent_iron_3a51 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.out_13fc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .out_13fc {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.item-action-0455 {
    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);
}

.item-action-0455:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-action-0455 .wide_7dd3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item-action-0455 .component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 1rem;
}

.highlight-fast-33f6 {
    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);
}

.texture-d238 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.texture-d238 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.west-ea04 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .west-ea04 {
        grid-template-columns: 1fr 1fr;
    }
}

.block-31e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-8d33 {
    margin-bottom: 1.5rem;
}

.icon-8d33 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.icon-8d33 input,
.icon-8d33 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;
}

.icon-8d33 input:focus,
.icon-8d33 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.clean-5924 {
    width: 100%;
    margin-top: 1rem;
}

.list_narrow_5067 {
    display: flex;
    align-items: center;
}

.tiny_a8cc {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.light-25a1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.label-basic-eeb3 {
    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;
}

.tooltip_center_fcf7 {
    color: var(--text-gray);
}

.pink_5e97 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.video-orange-c41e {
    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);
}

.video-orange-c41e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.element_static_e3f4 {
    margin-top: 3rem;
}

.inner-242c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.banner-20bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow-038d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.aside_1a17 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_1a17:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.silver-985d {
    padding: var(--section-padding);
}

.block_under_73b0 {
    margin: 2rem 0;
}

.layout_white_42b3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.container-right-725f {
    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;
}

.container-right-725f:hover, .container-right-725f.fn-active-3893 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gallery_49e1 {
    display: none;
}

.gallery_49e1.fn-active-3893 {
    display: block;
}

.narrow_6b1a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mini-7f3d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column_f629 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.column_f629 ul {
    list-style: none;
    padding: 0;
}

.column_f629 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.column_f629 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.preview_focused_e9df {
    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 */
.video_203e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy-1b45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_lower_4a96 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.module_out_45fa {
    color: var(--accent-color);
    margin: 0;
}

.rough-b648 {
    display: flex;
    gap: 1.5rem;
}

.tag-9d49 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs_ac25 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.title_tiny_4500 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_tiny_4500.south-be4f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.title_tiny_4500.content_left_2cef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.title_tiny_4500.box-f2e8 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.section_76e9 {
    margin-top: 2rem;
}

.tooltip_92e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accordion-hovered-54a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .accordion-hovered-54a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-6868 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.steel_f5b3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accent_a566 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.background_3c46 {
    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 */
.alert_brown_a069 {
    padding: var(--section-padding);
}

.overlay_short_4aa1 {
    margin: 2rem 0;
}

.table_c300 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.fluid_e2ca {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.banner-f58b {
    list-style: none;
    padding: 0;
}

.banner-f58b 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;
}

.banner-f58b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.banner-f58b li:last-child {
    border-bottom: none;
}

.text-0cfe {
    margin: 2rem 0;
}

.module-c460 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video-black-b27f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .video-black-b27f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content_67d7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_warm_5300 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.right_5482 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup_9bae {
    margin-top: 2rem;
}

.active-5287 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.progress-tiny-1c99 {
    list-style: none;
    padding: 0;
}

.dropdown_hot_f526 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.dropdown_hot_f526 a {
    color: var(--accent-color);
    text-decoration: none;
}

.dropdown_hot_f526 a:hover {
    text-decoration: underline;
}

.footer_b32c {
    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 */
.element-d9dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_last_a4e5 {
    margin: 2rem 0;
}

.article-d721 {
    margin-bottom: 3rem;
}

.article-d721 .menu_dynamic_06d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.badge_0d66 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bottom_38bc {
    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);
}

.bottom_38bc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.selected-a8bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .selected-a8bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer-ccb3 {
    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 */
.basic_9acd {
    padding: var(--section-padding);
}

.wide_4092 {
    margin: 2rem 0;
}

.dim-7960 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-lower-1edf {
    overflow-x: auto;
    margin: 2rem 0;
}

.description_black_a1e8 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.popup-0fa1 {
    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;
}

.secondary_blue_c421 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.complex-cd61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .complex-cd61 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-6195 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-6195 .black_c87a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.icon-6195 .west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-f687 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.panel-thick-f0d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow_54cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_54cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-1e0c {
    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;
}

.hover-1e0c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.link_steel_2f6c {
    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);
}

.main_38b1 {
    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;
}

.text-ed11 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout_lower_70ee {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.link-5a16 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.shadow-ff4a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-advanced-eebf {
    color: var(--text-white);
    font-weight: 600;
}

.element_f631 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.popup-yellow-32f4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-yellow-32f4 .sidebar_3256 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.panel-inner-d781 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel-inner-d781 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_yellow_c2d8 {
    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);
}

.hidden_yellow_c2d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_yellow_c2d8 .wide_7dd3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden_yellow_c2d8 .component-dynamic-0725 {
    color: var(--text-gray);
    font-size: 1rem;
}

.steel-25b4 {
    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);
}

.dropdown-easy-a852 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.dropdown-easy-a852 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.table_e3c5 {
    margin: 2rem 0;
}

.red-0daf {
    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);
}

.red-0daf:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.small_ebd5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.steel_2c2f {
    flex: 1;
}

.gallery-hard-cc2b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-53be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.picture-under-b7f0 {
    margin: 2rem 0;
}

.button-1cd6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-1cd6 .west_8c51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.button-1cd6 .dynamic_b5db {
    color: var(--text-gray);
    margin: 0;
}

.blue-db5d {
    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);
}

.blue-db5d .notification-5613 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.avatar-f687 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.detail_6b7c {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.hovered_331e {
    flex: 1;
}

.narrow_1df2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.paragraph_south_6f6e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.sort_slow_669a {
    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;
}

.article-51f1 {
    flex: 1;
}

.badge_3683 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.glass_4d1a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.box-9f09 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.dynamic_f5a5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.row_8813 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.row_8813 .sidebar_3256 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mini-d6f2 {
    margin-top: 2rem;
}

.mini-d6f2 .sort_bright_43a8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.lite_9820 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-fluid-e70a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module-fluid-e70a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-fluid-e70a .east_cb81 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-full-73aa {
    margin: 2rem 0;
}

.border_a90f {
    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 */
.full-cddd {
    padding: var(--section-padding);
}

.photo-hard-3cdd {
    margin-top: 1rem;
}

.detail-f9b9 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.detail-f9b9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.detail-f9b9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.tooltip-802d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_thick_2e4e {
    margin: 2rem 0;
}

.article_d86c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.avatar_b463 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.border_6dc5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.title_action_e55a {
    margin: 2rem 0;
}

.filter-23d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.filter-23d5 .menu_dynamic_06d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-85a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notification-85a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-a6e0 {
    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);
}

.tertiary_under_bdba {
    color: var(--text-white);
    font-weight: 600;
}

.clean-fda1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hidden-4377 {
    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);
}

.hidden-4377 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.action_4b1f {
    padding: var(--section-padding);
}

.surface_499b {
    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;
}

.surface_499b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table-5fc0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-5fc0 .over_ce39 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-5fc0 .advanced_c19a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.south_763e {
    flex: 1;
}

.simple-6622 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wide_2837 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_2837 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wide_2837 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fast_56d3 {
    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);
}

.fast_56d3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fast_56d3 strong {
    color: var(--warning-color);
}

/* Slots Section */
.article-bbc7 {
    padding: var(--section-padding);
}

.texture-fresh-67c6 {
    margin: 2rem 0;
}

/* Table Games Section */
.section-current-efc3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-top-c788 {
    margin: 2rem 0;
}

.aside-yellow-902b {
    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);
}

.aside-yellow-902b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.aside-yellow-902b .orange-5272 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-yellow-902b .light_8fa7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.disabled_9dce {
    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);
}

.disabled_9dce .notification-5613 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.logo-large-0eb2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-f42d {
    margin: 2rem 0;
}

.layout_8215 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_small_5405 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark-9cab {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_upper_ccbc {
    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);
}

.footer_upper_ccbc:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer_upper_ccbc.fn-active-3893 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-cbff {
    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);
}

.popup-01b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup-01b4 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.east_13f2 {
    padding: var(--section-padding);
}

.status_outer_05cc {
    margin: 2rem 0;
}

.logo-fresh-901c {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.logo-fresh-901c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .logo-fresh-901c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.fixed-150a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.paragraph_cool_7a07 {
    flex: 1;
}

.card-down-37bd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.row_orange_8074 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.element-b67c {
    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;
}

.picture-4e61 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.photo_green_1a0e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.list_left_093b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.element-f604 {
    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;
}

.element-f604:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.frame_13d4 {
    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);
}

.status-c803 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status-c803 strong {
    color: var(--accent-color);
}

/* New Games Section */
.middle-8088 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-first-73a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gradient-first-73a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-first-73a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_7342 {
    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;
}

.tabs_7342:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination_23a6 {
    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;
}

.tooltip-3a00 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.main_copper_41b3 {
    font-size: 2rem;
}

.notice-fc4a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tall-eb45 {
    flex: 1;
}

.card_prev_a55d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.rough_e3bd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accordion_fc3e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-003b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.carousel-a7a6 {
    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;
}

.module-41a6 {
    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;
}

.module-41a6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.thumbnail_up_6d5b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-0651 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout_top_819e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .layout_top_819e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_9cd8 {
    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);
}

.form-short-ef07 {
    color: var(--text-white);
    font-weight: 600;
}

.gradient_22ef {
    color: var(--accent-color);
    font-weight: 600;
}

.pressed_c751 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.pressed_c751 strong {
    color: var(--accent-color);
}

/* Security Section */
.brown-6982 {
    padding: var(--section-padding);
}

/* Benefits Section */
.article-iron-05fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.highlight_middle_62cf {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.picture_a132 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_action_5482 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.right_4206 {
    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) {
    .right_4206 {
        flex-direction: column;
        gap: 1rem;
    }
}

.right_4206:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.right_4206 .sort_slow_669a {
    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;
}

.right_4206 .article-51f1 {
    flex: 1;
}

.right_4206 .badge_3683 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.right_4206 .glass_4d1a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.block_focused_85b5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_focused_85b5 .popup_gold_1582 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_focused_85b5 .rough-2da8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_focused_85b5 .rough-2da8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.block_focused_85b5 .rough-2da8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.badge_pressed_bc0a {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.focus_gold_1d1e {
    padding: var(--section-padding);
}

.active-8d1b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .active-8d1b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_ccdf {
    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_ccdf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.badge_ccdf .mask-2e02 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_ccdf .surface_focused_725d {
    flex: 1;
}

.badge_ccdf .full_08a6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge_ccdf .row_stone_f3c0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list-fresh-8302 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-fresh-8302 .gradient_75e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list-fresh-8302 .wood-069d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.list-fresh-8302 .wood-069d 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);
}

.list-fresh-8302 .wood-069d li:last-child {
    border-bottom: none;
}

.list-fresh-8302 .wood-069d 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;
}

.list-fresh-8302 .wood-069d li strong {
    color: var(--text-white);
}

.panel_242f {
    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);
}

.panel_242f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel_242f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.lower-f907 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-in-f4cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .disabled-in-f4cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_red_9ec5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus_red_9ec5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden_motion_879c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden_gold_ad8e {
    font-size: 2rem;
}

.shadow-easy-56ce {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.focused-9b57 {
    flex: 1;
}

.header_d339 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_d339 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header_d339 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.filter_7f6f {
    margin-top: 3rem;
}

.table_c300 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fluid_e2ca {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner-f58b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-f58b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.banner-f58b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.banner-f58b li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.dark-3208 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot_0ebb {
    margin: 2rem 0;
}

.active_5497 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.active_5497 .menu_dynamic_06d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status-4d0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .status-4d0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left-56c8 {
    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);
}

.left-56c8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.form_dark_7dd5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search_hard_e77d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.footer_a107 {
    padding: var(--section-padding);
}

.status-dfe5 {
    margin: 2rem 0;
}

.pagination_center_69fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .pagination_center_69fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination_center_69fd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-92a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.filter-92a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.badge_6e98 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.search-b510 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.full_d553 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.full_d553.active_east_9316 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.notice-5321 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.photo-gas-fa9d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.widget_d79e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_tiny_a852 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link-9be9 {
    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);
}

.link-9be9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link-9be9 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.info-4539 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-clean-389a {
    margin: 2rem 0;
}

.right-9319 {
    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) {
    .right-9319 {
        flex-direction: column;
        gap: 1rem;
    }
}

.right-9319:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.right-9319::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);
}

.sidebar_65fa {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.video_ba3c {
    flex: 1;
}

.easy-4a25 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-up-c78e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-up-c78e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_small_1555 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_929f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-black-b069 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link-black-b069 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_fa13 {
    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);
}

.primary_2e03 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav_hovered_97a1 {
    flex: 1;
}

.summary_4df1 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.footer_db35 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.static_cb2e {
    margin-top: 2rem;
    text-align: center;
}

.title_selected_9223 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title_selected_9223 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.sidebar_9fe9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_9fe9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_6825 {
    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);
}

.element_6825:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element_6825 .alert-north-e047 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_6825 .cool-e538 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.element_6825 .element_blue_0063 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.element_6825 .info_e477 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.notification-2af3 {
    padding: var(--section-padding);
}

.wrapper-bc44 .primary-dark-d167 {
    flex: 1;
}

/* Promo Calendar Section */
.badge_96f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_a31a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_a31a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-1439 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_hard_54e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.frame-hot-ee21 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bronze_1c3b {
    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);
}

.item_next_d169 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs-basic-cf40 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.outline-static-c184 {
    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);
}

.outline-static-c184 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline-static-c184 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.element_brown_685e {
    padding: var(--section-padding);
}

.summary_easy_ac4b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .summary_easy_ac4b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort-75bd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-5196 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.north_4da5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.north_4da5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-e33e {
    margin-top: 3rem;
}

.accent-e33e .table_c300 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.accent-e33e .fluid_e2ca {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent-e33e .banner-f58b {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.accent-e33e .banner-f58b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.accent-e33e .banner-f58b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.accent-e33e .banner-f58b li strong {
    color: var(--warning-color);
}

.tag-5b25 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag-5b25 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.south-6423 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-2163 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-2163 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-0aa8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-0aa8 .menu_dynamic_06d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.box_mini_a894 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.basic-75aa {
    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);
}

.basic-75aa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.small-3101 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-187c {
    flex: 1;
}

.east_9a60 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.fresh-a312 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notification-46e4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.tertiary_364e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.alert-c5f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .alert-c5f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid-36a2 {
    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);
}

.solid-36a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard-cf30 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-7163 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture-d238 {
    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);
}

.accent_55a3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.accent_55a3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.motion-b430 { 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; }
.image-prev-888c, .short_b939 { max-width:100%; height:auto; }

.video_iron_89a3, .fresh_0cd2, .label_inner_be1a { white-space:normal; }

.white-a2bd,
.hover_black_a762,
.mask-huge-0f91,
.sidebar_9fe9,
.picture-under-b7f0,
.notification-easy-0f72 {
  flex-wrap:wrap;
}

[class*="grid"],
.alert-c5f7,
.pagination_center_69fd,
.component-west-2f31 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.outer-c1fd img,
.hover_black_a762 img,
.wide_25f3 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.notice-1cd9, .heading_narrow_8a2c,
.link_wide_7370, .accent-e49e {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.card_e615 { width:100%; overflow-x:auto; }
.card_e615 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.medium-3017 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .medium-3017 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.last-c9c6 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.gradient_dark_4fcf,
.message-87c6,
.element-north-12c0,
.fluid_3691,
.out_13fc,
.alert-c5f7,
.pagination_center_69fd,
.component-west-2f31,
.huge_685d,
.status_outer_05cc,
.medium-3017 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .gradient_dark_4fcf,
  .message-87c6,
  .element-north-12c0,
  .fluid_3691,
  .out_13fc,
  .alert-c5f7,
  .pagination_center_69fd,
  .component-west-2f31,
  .huge_685d,
  .status_outer_05cc,
  .medium-3017 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.icon-3028,
.item-action-0455,
.solid-36a2,
.fresh_2fdc,
.filter-92a0,
.grid-over-8772,
.logo-fresh-901c,
.last-c9c6 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.item-b29d,
.widget-liquid-5f64,
.widget_8449 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.item-b29d > *,
.widget-liquid-5f64 > *,
.widget_8449 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 0080 */
.ghost-box-p2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
