/* {$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;
}

.accent_e790 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.list-smooth-4f30 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .list-smooth-4f30 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .list-smooth-4f30 {
        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 */
.backdrop-fixed-79d2 {
    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);
}

.complex-0fd0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .complex-0fd0 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .form_17f6 {
        grid-column: 1;
    }
    
    .outline-6ea6 {
        grid-column: 2;
    }
    
    .content_silver_9761 {
        grid-column: 3;
    }
}

.form_17f6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.form_17f6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tabs-last-1193 {
    display: none;
}

@media (min-width: 1024px) {
    .tabs-last-1193 {
        display: block;
    }
}

/* Grouped Navigation */
.large_0308 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.narrow_8633 {
    position: relative;
}

.description-7041 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.narrow_8633 .outline-79de {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.outline-79de {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.under-06df {
    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;
}

.under-06df:hover,
.under-06df.fn-active-13a4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.mini_a6b4 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .mini_a6b4 {
        display: flex;
    }
}

/* Mobile Register Button */
.outline-6ea6 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .outline-6ea6 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.cool_07e4 {
    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;
}

.cool_07e4::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 */
.content_silver_9761 {
    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) {
    .content_silver_9761 {
        display: none;
    }
}

.content_silver_9761 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.content_silver_9761.fn-active-13a4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.content_silver_9761.fn-active-13a4 span:nth-child(2) {
    opacity: 0;
}

.content_silver_9761.fn-active-13a4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.slider-6cf2 {
    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;
}

.slider-6cf2.fn-active-13a4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.sidebar-soft-7643 {
    overflow: hidden;
}

.hot-c51c {
    list-style: none;
    padding: 0.75rem 0;
}

.notice_plasma_25dc {
    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;
}

.notice_plasma_25dc:hover,
.notice_plasma_25dc.fn-active-13a4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.notice_plasma_25dc.upper-fe9a {
    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;
}

.notice_plasma_25dc.upper-fe9a::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 */
.lite-10dc {
    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;
}

.carousel_fast_e9a5 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.carousel_fast_e9a5:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.primary-3f34 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.primary-3f34:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.east_232c {
    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;
}

.east_232c:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sidebar-small-e204 {
    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;
}

.widget-c920 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.widget-c920:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.in-4bcb {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.in-4bcb:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.footer-7096 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.footer-7096: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);
}

.accordion-46ed {
    font-size: 1em;
    font-weight: 700;
}

.wrapper_out_1c1e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.search_mini_8aab {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.search_mini_8aab::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;
}

.easy_471d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .easy_471d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.glass_b38e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hover_fixed_4d0a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.dark-fd79 {
    margin-bottom: 2rem;
}

.paper_19e6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paper_19e6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid_95ae {
    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);
}

.hero-medium-99a7 {
    font-size: 1.5rem;
}

.wood-f1bb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.yellow_14be {
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-dd34 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.white-dd34:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.secondary_slow_6071 {
    text-align: center;
    margin-bottom: 3rem;
}

.cool_f7e2 {
    margin-bottom: 1rem;
}

.north_bae1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.chip_8b90 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .chip_8b90 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .chip_8b90.advanced-603d {
        direction: rtl;
    }
    
    .chip_8b90.advanced-603d > * {
        direction: ltr;
    }
}

.picture_dd57 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.picture_dd57:first-child {
    margin-top: 0;
}

.top_4644 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.white_5adc {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.white_5adc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.gas-df12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas-df12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_east_90ce {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline_green_a993 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.solid-f0b8 {
    list-style: none;
}

.solid-f0b8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solid-f0b8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.green_ca84 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tiny_96bd {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert-pressed-28ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.feature-wide-8d76 {
    margin: 2rem 0;
}

.paragraph-e679 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.huge_2ddc {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.slider_stone_ab52 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.module_copper_c35d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.plasma_f3ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_f3ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_884d {
    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);
}

.item_884d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outer-867b {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cool_2537 {
    font-size: 1.5rem;
}

.middle_8f3b {
    color: var(--accent-color);
    margin: 0;
}

.disabled_08f2 {
    list-style: none;
}

.disabled_08f2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.disabled_08f2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.image-active-6592 {
    margin: 2rem 0;
}

.notification_200b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.media_0982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .media_0982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_full_a274 {
    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);
}

.section-light-3537 {
    font-size: 1.25rem;
}

.pressed-fc90 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hero-568d,
.info-6e3a {
    text-align: center;
    margin: 2rem 0;
}

.carousel-240c,
.lower-c826 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.title-smooth-9ab9 {
    margin: 2rem 0;
    text-align: center;
}

.sort_7795 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sort_7795::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;
}

.pagination_4408 {
    position: relative;
    z-index: 1;
}

.row-bright-2514 {
    margin-bottom: 1rem;
}

.prev_c0f9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pagination_black_5226 {
    margin-bottom: 3rem;
}

.up-bce4 {
    margin-top: 3rem;
}

.icon_fb92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .icon_fb92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_fb92 .liquid_95ae {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.container_c770 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rough_7891 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.header-action-cfee {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.black_d979 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .black_d979 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_d979 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dim_8da0 {
    margin-bottom: 1rem;
}

.element-easy-1944 img {
    margin-bottom: 1rem;
}

.action-8e4e {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_7ed3 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tertiary_8fd2 {
    list-style: none;
}

.tertiary_8fd2 li {
    margin-bottom: 0.5rem;
}

.tertiary_8fd2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tertiary_8fd2 a:hover {
    color: var(--accent-color);
}

.hero_narrow_90e3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.frame-d4f3 {
    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);
}

.frame-d4f3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tooltip_east_7218 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tooltip_east_7218 p {
    margin-bottom: 0.25rem;
}

.in_a548 {
    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) {
    .in_a548 {
        flex-direction: row;
    }
}

.button_1450 {
    text-align: center;
}

@media (min-width: 768px) {
    .button_1450 {
        text-align: left;
    }
}

.button_1450 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pressed-974e {
    font-size: 0.75rem !important;
}

.overlay-medium-1e59 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.row_d050 {
    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);
    }
}

.cool_88a0 {
    animation: fadeInUp 0.6s ease-out;
}

.huge-c913 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.frame_205e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_205e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.aside-94ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-94ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-fluid-dbef {
    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);
}

.pagination-fluid-dbef .alert-pressed-28ae {
    font-size: 1.25rem;
}

.pagination-fluid-dbef .disabled-light-f9ab {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.steel-bcfd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .steel-bcfd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer-34bc {
    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);
}

.outer-34bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_23f8 {
    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);
}

.shade_f9b1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form-1470 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-1c06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-brown-cc8c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section-brown-cc8c .article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section-brown-cc8c .dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip_c5e3 {
    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);
}

.inner_6376 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.inner_6376 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.inner_6376 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.avatar_af97 {
    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);
}

.static-5ce1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steel_56b2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.steel_56b2 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel_56b2 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);
}

.steel_56b2 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.steel_56b2 input::placeholder {
    color: var(--text-muted);
}

.header_fast_bf3b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-4887 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.highlight-4887 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.new_d7a0 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.new_d7a0:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.media_0982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_0982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_full_a274 {
    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);
}

.article_full_a274 .section-light-3537 {
    font-size: 1.25rem;
}

.article_full_a274 .pressed-fc90 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.accent_3d1c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_south_c5b9 {
    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);
}

.card_south_c5b9 .alert-pressed-28ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_south_c5b9 .article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_south_c5b9 .dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver_522d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_gas_2044 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_gas_2044 .tabs_inner_7e62 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover_gas_2044 .paper_2810 {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm-7079 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_fb5d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outer_fb5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_medium_6088 {
    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);
}

.nav_medium_6088:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west-62e2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dynamic-e33c {
    flex: 1;
}

.surface-large-09cf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_3dc8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav-d54b {
    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);
}

.nav-d54b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hero-blue-f838 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-blue-f838 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_bfe8 {
    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_bfe8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_fluid_ce5e {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_warm_6c27 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused_20c5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary-bc86 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dynamic_639b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_1cc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-e769 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard-e769 .shade_0e8c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-e769 .hard_5b94 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_c73e {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_c42f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-c97b {
    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);
}

.pink-c97b .alert-pressed-28ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-c97b .article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink-c97b .dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-red-128e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-red-128e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh-ad41 {
    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);
}

.fresh-ad41:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.form_plasma_9d73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_plasma_9d73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_lite_aa28 {
    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);
}

.backdrop_lite_aa28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.purple-48ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-bottom-87c7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.huge_2ddc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.red_6afd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.label-solid-f53a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_9ee8 {
    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);
}

.row_9ee8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick_1be6 {
    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);
}

.slow-00e2 {
    flex: 1;
}

.notification_focused_6dd7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.right_8089 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.photo_solid_e9c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-1ad3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-1f43 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-1f43 .tabs_inner_7e62 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert-1f43 .paper_2810 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-6e3a {
    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);
}

.tabs-2ef4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-2ef4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.last_55dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_55dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_b5c9 {
    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);
}

.silver_b5c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown-5709 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-warm-96a6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cold-5556 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.west-96f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over-ad14 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-1cbd {
    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);
}

.form_5163 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_under_a403 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed_f4a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_c42f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-c97b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pink-c97b .article_red_9df2 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink-c97b .dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_f0e4 {
    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);
}

.button_fluid_bf24 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_fluid_bf24 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_fluid_bf24 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_25d6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.out_25d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark-4a3b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.card_df64 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hard_bd60 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.info_bottom_d7b7 {
    padding: 1.5rem;
}

.summary_down_c252 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.south_7528 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south_7528 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;
}

.south_7528 li:last-child {
    border-bottom: none;
}

.south_7528 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.summary_3b6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_3b6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_af87 {
    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);
}

.outer_af87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north_9475 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_purple_dba3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.text-black-f0e6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wrapper-b8e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.old-2f60 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected_a792 {
    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);
}

.next-744f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny-15ad {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.out_e21f {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-hard-60b2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_solid_a61f {
    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);
}

.upper_b979 {
    text-align: center;
}

.center-258a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-0481 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hidden_d507 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-ec69 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-ec69 .article_red_9df2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced-ec69 .dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_smooth_c6b1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_smooth_c6b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_smooth_c6b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_top_6b27 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs_top_6b27:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-26bb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown-mini-3c9c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_red_9df2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.basic_8dfd {
    padding: 1.5rem;
}

.dropdown_tiny_bbed {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover_bfd9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_bfd9 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;
}

.hover_bfd9 li:last-child {
    border-bottom: none;
}

.hover_bfd9 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.last_9c00 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.heading-9cdf {
    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);
}

.heading-9cdf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_c046 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-7eeb {
    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);
}

.notice_23f8 {
    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;
}

.shade_f9b1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form-1470 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_4546 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_31a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture-white-be0d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood_7d53 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bottom_0931 {
    display: flex;
    gap: 1rem;
}

.bottom_0931 .aside-new-ce97 {
    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;
}

.popup_8827 {
    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-0e10 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description-d0a4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-d0a4 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;
}

.description-d0a4 li:last-child {
    border-bottom: none;
}

.description-d0a4 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.light_3cf8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .light_3cf8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .light_3cf8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_acfc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notice_acfc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.narrow_7e4f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.medium_f254 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shade_0e8c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.list-warm-0ddd {
    font-size: 1rem;
}

.description_3dd0 {
    padding: 1.5rem;
}

.hard_5b94 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.heading-4e35 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.heading-4e35 .upper_b979 {
    text-align: center;
}

.heading-4e35 .dynamic-0481 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.heading-4e35 .link_bright_1417 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.heading_a676 {
    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);
}

.heading_a676:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.next-97f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next-97f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-4c33 {
    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);
}

.tag-4c33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_soft_0f75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-2c88 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-north-6408 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-a8d5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-6830 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-7b4a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev-c5e8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.silver_44fc {
    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);
}

.mask-0ea4 {
    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;
}

.mask-0ea4.text-east-b0ab {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.mask-0ea4.highlight-b58a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.mask-0ea4.tertiary-4082 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.mask-0ea4.surface_6322 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.mask-0ea4.accordion_c512 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.texture_0abc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_last_99ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-static-688e {
    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);
}

.feature-current-0ccf {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.silver_522d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver_522d 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;
}

.silver_522d li:last-child {
    border-bottom: none;
}

.silver_522d li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.primary-down-3e0d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary-down-3e0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-down-3e0d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_594a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full_594a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_594a.hot-7a82 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .full_594a.hot-7a82 {
        grid-column: span 3;
    }
}

.content_cd6e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.full_594a.hot-7a82 .content_cd6e {
    background: rgba(6, 182, 212, 0.1);
}

.item_current_c4e9 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-eec1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.full_594a.hot-7a82 .badge-eec1 {
    color: var(--info-color);
}

.gold-df7f {
    padding: 1.5rem;
    text-align: center;
}

.solid_8361 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.full_594a.hot-7a82 .solid_8361 {
    color: var(--info-color);
}

.liquid-1b9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.shadow-middle-0381 {
    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 */
.heading-lite-be13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-lite-be13 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-0c78 {
    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);
}

.menu-0c78:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_b0fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_south_c5b9 {
    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);
}

.section-light-3537 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-bronze-08d9 {
    flex: 1;
}

.notification_200b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget_0fe2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-72a6 {
    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);
}

.header_pro_1f39 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.primary-7731 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.row_d050 {
    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);
}

.light-f027 {
  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);
}

.light-f027 .upper_b979 {
    text-align: center;
}

.light-f027 .center-258a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.light-f027 .dynamic-0481 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider-b9b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_full_dc02 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-7286 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_light_4637 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-iron-82be {
    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);
}

.thumbnail-current-83e9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-motion-947a {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-under-5f6f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-under-5f6f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-under-5f6f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table-gas-9f5b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table-gas-9f5b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large-b17c {
    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);
}

.badge-simple-b9f0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.image_pro_a738 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.image_small_5487 {
    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_small_5487.gold_ad2e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.image_small_5487.frame_d76e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.image_small_5487.outline_02d6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.paragraph_prev_3a31 {
    padding: 1.5rem;
    text-align: center;
}

.caption-3d4d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image_short_99c4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.image_short_99c4 .chip-38bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.bottom-5614 {
    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);
}

.bottom-5614:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.content_fixed_78aa {
  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);
}

.white_0b7f {
    text-align: center;
}

.white_0b7f .center-258a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.white_0b7f .dynamic-0481 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.form-a4f8 { text-align: center; }
.description-df40 { text-align: left; }
.rough-97e1 { text-align: right; }

.media_6752 { margin-bottom: 0; }
.black-0999 { margin-bottom: 0.5rem; }
.logo-d483 { margin-bottom: 1rem; }
.out_73f1 { margin-bottom: 1.5rem; }
.brown_29a6 { margin-bottom: 2rem; }

.shadow_center_d435 { margin-top: 0; }
.row-3acd { margin-top: 0.5rem; }
.detail-fluid-1934 { margin-top: 1rem; }
.form_69b9 { margin-top: 1.5rem; }
.in-9a1f { margin-top: 2rem; }

.fn-hidden-13a4 { display: none; }
.fn-visible-13a4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .search_mini_8aab {
        padding: 6rem 0 3rem;
    }
    
    .easy_471d {
        text-align: center;
    }
    
    .chip_8b90 {
        text-align: center;
    }
    
    .paper_19e6 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .backdrop-fixed-79d2,
    .slider-6cf2,
    .sort_7795,
    .header-action-cfee {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .search_mini_8aab {
        background: none;
    }
}

/* Providers Section */
.first-8bd2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element-45ce {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-45ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-45ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-action-9655 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-action-9655:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section-78a7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hover_slow_847c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.last_862d {
    list-style: none;
    padding: 0;
}

.last_862d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.last_862d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.gold_19f2 {
    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);
}

.gold_19f2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.card-red-3348 {
    padding: var(--section-padding);
}

.overlay_dynamic_789e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_dynamic_789e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-cool-b7f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-cool-b7f6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.picture-209c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.wide_bd44 {
    display: flex;
    flex-direction: column;
}

.caption-f2b1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.background-c6b7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.yellow-39e8 {
    color: var(--accent-color);
}

.content_south_79b0 {
    font-size: 1.25rem;
}

.accent-simple-7caf {
    margin-bottom: 1rem;
}

.accent-simple-7caf p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.lower-33dd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.paragraph-dim-57e1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.upper_b979 {
    text-align: center;
}

.center-258a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-0481 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.preview_7542 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-caec {
    margin: 2rem 0;
}

.east_68c4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.east_68c4 .alert-pressed-28ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_d760 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.media-hovered-6baa {
    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;
}

.media-hovered-6baa:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery_3f32 {
    font-size: 2rem;
}

.texture-new-cf31 {
    display: flex;
    flex-direction: column;
}

.fresh-e62d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.complex_4d6d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.text_soft_95f1 {
    padding: var(--section-padding);
}

.huge_a8da {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .huge_a8da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .huge_a8da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_wood_253c {
    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);
}

.tertiary_wood_253c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary_wood_253c .center-258a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tertiary_wood_253c .dynamic-0481 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tertiary_wood_253c .badge_d1f1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.detail_light_db78 {
    margin-top: 4rem;
}

.popup-simple-5c3a {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.info-thick-1e27 {
    overflow-x: auto;
}

.aside_cool_88a3 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.aside_cool_88a3 thead {
    background: var(--accent-color);
}

.aside_cool_88a3 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.aside_cool_88a3 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_cool_88a3 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.aside_cool_88a3 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.menu-4558 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_smooth_eeed {
    max-width: 900px;
    margin: 0 auto;
}

.hidden_fixed_0235 {
    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);
}

.hidden_fixed_0235:hover {
    border-color: var(--accent-color);
}

.content_short_c081 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.content_short_c081 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.full-d573 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hidden_fixed_0235.fn-active-13a4 .full-d573 {
    transform: rotate(45deg);
}

.accordion-7fda {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hidden_fixed_0235.fn-active-13a4 .accordion-7fda {
    max-height: 1000px;
}

.accordion-7fda p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.slider_2eb5 {
    padding: var(--section-padding);
}

.inner_6376 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.header_88c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-smooth-be48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-smooth-be48 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag-fixed-7f11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-down-9f01 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.action-e8f7 {
    font-size: 2rem;
}

.summary-gold-fd82 {
    color: var(--text-white);
    margin: 0;
}

.motion_9e84 {
    list-style: none;
    padding: 0;
}

.motion_9e84 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_9e84 li:last-child {
    border-bottom: none;
}

.info_6dd2 {
    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);
}

.info_6dd2 p {
    color: var(--success-color);
    margin: 0;
}

.progress_25a8 {
    margin-top: 3rem;
}

.sort-0e10 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.notification-f5a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notification-f5a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column-stale-4bcb {
    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);
}

.tall_d432 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.column-stale-4bcb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.sidebar-pink-25c2 {
    padding: var(--section-padding);
}

.logo_full_38d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_full_38d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-tall-853f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade-tall-853f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag_1624 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rough-bb0c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dropdown-547e {
    flex: 1;
}

.primary-752a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.widget_rough_5bc7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.caption_pro_d4fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_steel_0d97 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus_steel_0d97:last-child {
    border-bottom: none;
}

/* Comparison Section */
.thumbnail_12ca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.basic-3b5e {
    padding: var(--section-padding);
}

.surface-out-9d2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.table-warm-31da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-warm-31da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_under_3b71 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-6f80, .widget-focused-0627, .description-1c6a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.description-1c6a {
    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 */
.solid-6e8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-b2c9 {
    margin: 2rem 0;
}

.carousel-9570 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-58d0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.picture_2e3f {
    list-style: none;
    padding: 0;
}

.picture_2e3f 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;
}

.picture_2e3f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.picture_2e3f li:last-child {
    border-bottom: none;
}

.plasma_6ab9 {
    text-align: center;
    margin-top: 2rem;
}

.active_caac {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hidden_bronze_040f {
    padding: var(--section-padding);
}

.notice_outer_bbde {
    margin: 2rem 0;
}

.nav-fresh-d47f {
    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) {
    .nav-fresh-d47f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-fresh-d47f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media-complex-4a4a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.modal_west_68d8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.clean-4ecb {
    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;
}

.pattern_hot_3672 {
    flex: 1;
}

.progress-1360 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.texture_north_171b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.blue_4afb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.status-f937 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .status-f937 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter_c4b7 {
    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);
}

.filter_c4b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_c4b7 .center-258a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_c4b7 .dynamic-0481 {
    color: var(--text-gray);
    font-size: 1rem;
}

.content-60e4 {
    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);
}

.inner-75eb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.inner-75eb strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.prev-35c5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .prev-35c5 {
        grid-template-columns: 1fr 1fr;
    }
}

.medium-f721 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_77f6 {
    margin-bottom: 1.5rem;
}

.wood_77f6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wood_77f6 input,
.wood_77f6 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;
}

.wood_77f6 input:focus,
.wood_77f6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.disabled_dynamic_8bd1 {
    width: 100%;
    margin-top: 1rem;
}

.yellow_b008 {
    display: flex;
    align-items: center;
}

.message-slow-767f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.column-huge-e4a3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.filter-e6a3 {
    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;
}

.next-9e51 {
    color: var(--text-gray);
}

.input-in-e1c5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.over_025e {
    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);
}

.over_025e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb_pressed_4d57 {
    margin-top: 3rem;
}

.block_up_0abb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.video-e63e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-5e34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient_simple_d3f2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient_simple_d3f2:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.paragraph_455a {
    padding: var(--section-padding);
}

.pagination_bright_8810 {
    margin: 2rem 0;
}

.title-pro-4ccf {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tooltip-black-2102 {
    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;
}

.tooltip-black-2102:hover, .tooltip-black-2102.fn-active-13a4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dynamic_e87f {
    display: none;
}

.dynamic_e87f.fn-active-13a4 {
    display: block;
}

.surface-north-02e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_e85d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.logo_lite_1371 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.logo_lite_1371 ul {
    list-style: none;
    padding: 0;
}

.logo_lite_1371 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.logo_lite_1371 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tertiary-4da4 {
    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 */
.mask-gold-e482 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_ff67 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_9a74 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.soft-d75c {
    color: var(--accent-color);
    margin: 0;
}

.brown_56dc {
    display: flex;
    gap: 1.5rem;
}

.shadow_smooth_1eb4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.left-9289 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.static-ff85 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.static-ff85.element_23e3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.static-ff85.status-simple-60fc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.static-ff85.picture-west-8bcc {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.item_ad66 {
    margin-top: 2rem;
}

.main-20a1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.breadcrumb-dirty-3507 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .breadcrumb-dirty-3507 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-a91a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.caption_4813 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wrapper_last_c29c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.black-5cff {
    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 */
.feature-5e2e {
    padding: var(--section-padding);
}

.sidebar_bronze_abde {
    margin: 2rem 0;
}

.copper_680a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.sidebar-95b8 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.stone-3ccc {
    list-style: none;
    padding: 0;
}

.stone-3ccc 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;
}

.stone-3ccc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.stone-3ccc li:last-child {
    border-bottom: none;
}

.pagination-ac07 {
    margin: 2rem 0;
}

.heading_0285 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accordion-blue-0b16 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion-blue-0b16 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary-plasma-1f3b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_a91e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table-15ed {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_slow_f22e {
    margin-top: 2rem;
}

.surface-large-09cf {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.label-first-149b {
    list-style: none;
    padding: 0;
}

.widget_dirty_13a3 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.widget_dirty_13a3 a {
    color: var(--accent-color);
    text-decoration: none;
}

.widget_dirty_13a3 a:hover {
    text-decoration: underline;
}

.panel_9e2d {
    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 */
.heading_gas_d370 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-d152 {
    margin: 2rem 0;
}

.short-e1ee {
    margin-bottom: 3rem;
}

.short-e1ee .stone-58d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pattern_smooth_47b2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-medium-44f7 {
    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);
}

.search-medium-44f7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.texture-8b5c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .texture-8b5c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_2a59 {
    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 */
.short_5a2e {
    padding: var(--section-padding);
}

.complex-646f {
    margin: 2rem 0;
}

.focus_cda8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.item_23f9 {
    overflow-x: auto;
    margin: 2rem 0;
}

.footer-fffb {
    background: rgba(6, 182, 212, 0.1) !important;
}

.mask-hovered-3345 {
    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;
}

.widget-a835 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tabs-top-b57c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tabs-top-b57c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north-faa7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north-faa7 .alert-pressed-28ae {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.north-faa7 .article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-e201 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.alert_f94a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_1e3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced_1e3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-static-312e {
    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;
}

.tertiary-static-312e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.progress_4535 {
    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);
}

.widget_581f {
    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;
}

.hovered-3980 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hidden_large_409e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.preview-light-aa4e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.west-7891 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper-a818 {
    color: var(--text-white);
    font-weight: 600;
}

.carousel_gas_fe59 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.media-purple-55c9 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media-purple-55c9 .aside-new-ce97 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.prev_ea9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .prev_ea9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under-b579 {
    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);
}

.under-b579:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under-b579 .center-258a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.under-b579 .dynamic-0481 {
    color: var(--text-gray);
    font-size: 1rem;
}

.box_in_12ad {
    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);
}

.huge-64e4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.huge-64e4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.over-ad14 {
    margin: 2rem 0;
}

.pagination-1cbd {
    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);
}

.pagination-1cbd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.form_5163 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.outline_43f5 {
    flex: 1;
}

.widget_under_a403 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed_f4a7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.pagination_c42f {
    margin: 2rem 0;
}

.pink-c97b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-c97b .article_red_9df2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.pink-c97b .dropdown_tiny_bbed {
    color: var(--text-gray);
    margin: 0;
}

.shadow_f0e4 {
    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);
}

.shadow_f0e4 .carousel-240c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.breadcrumb-e201 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.thick_1be6 {
    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;
}

.slow-00e2 {
    flex: 1;
}

.right_8089 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.photo_solid_e9c3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.notice_23f8 {
    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;
}

.menu_59ff {
    flex: 1;
}

.shade_f9b1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.form-1470 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.texture-white-be0d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.wood_7d53 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.bottom_0931 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.bottom_0931 .aside-new-ce97 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.popup_8827 {
    margin-top: 2rem;
}

.popup_8827 .sort-0e10 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.nav-2424 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_solid_a61f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_solid_a61f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_solid_a61f .upper_b979 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_d507 {
    margin: 2rem 0;
}

.advanced-ec69 {
    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 */
.module-fresh-b354 {
    padding: var(--section-padding);
}

.basic_8dfd {
    margin-top: 1rem;
}

.hover_bfd9 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hover_bfd9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hover_bfd9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.backdrop_gas_c099 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_aa79 {
    margin: 2rem 0;
}

.container-d382 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.red-c1f4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.backdrop-8b84 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.carousel_7847 {
    margin: 2rem 0;
}

.message-top-2d5e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.message-top-2d5e .stone-58d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-66ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label-66ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tiny_f783 {
    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);
}

.preview-ceea {
    color: var(--text-white);
    font-weight: 600;
}

.bottom-97db {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.layout-b27d {
    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);
}

.layout-b27d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.border-advanced-1225 {
    padding: var(--section-padding);
}

.pattern_6016 {
    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;
}

.pattern_6016:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.red_b8dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.red_b8dc .tall_d432 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red_b8dc .basic_fd7c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notification_8d41 {
    flex: 1;
}

.box-8da7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info_fixed_9cfa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_fixed_9cfa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info_fixed_9cfa li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.content-dynamic-8384 {
    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);
}

.content-dynamic-8384 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content-dynamic-8384 strong {
    color: var(--warning-color);
}

/* Slots Section */
.overlay-5b78 {
    padding: var(--section-padding);
}

.dynamic_639b {
    margin: 2rem 0;
}

/* Table Games Section */
.border_258c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_1cc1 {
    margin: 2rem 0;
}

.hard-e769 {
    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);
}

.hard-e769:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard-e769 .shade_0e8c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-e769 .hard_5b94 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.green_c73e {
    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);
}

.green_c73e .carousel-240c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.primary-6b0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_lite_521b {
    margin: 2rem 0;
}

.orange_9869 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-small-56a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent_up_eaf2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_green_3c3e {
    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);
}

.popup_green_3c3e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.popup_green_3c3e.fn-active-13a4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-b36a {
    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);
}

.steel-8b03 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel-8b03 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.thumbnail-2cf7 {
    padding: var(--section-padding);
}

.small-6561 {
    margin: 2rem 0;
}

.fluid-5ab9 {
    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);
}

.fluid-5ab9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fluid-5ab9 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.background-plasma-8e17 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.text-552d {
    flex: 1;
}

.notification_bronze_41bb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-befb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.red_aa73 {
    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;
}

.hidden-5400 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.status-2975 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.advanced_8453 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.easy-1823 {
    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;
}

.easy-1823:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.medium-4c0d {
    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);
}

.dropdown_1b1e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown_1b1e strong {
    color: var(--accent-color);
}

/* New Games Section */
.info_b702 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_d18e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .next_d18e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .next_d18e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-purple-4e64 {
    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;
}

.link-purple-4e64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.form_7d57 {
    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;
}

.main_ebc6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.south_55aa {
    font-size: 2rem;
}

.thumbnail_out_449f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.center-2b30 {
    flex: 1;
}

.disabled_complex_cd87 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.logo_1e38 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-5bf6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.popup_next_ebd8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.text-outer-0956 {
    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;
}

.pattern-stone-94e4 {
    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;
}

.pattern-stone-94e4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.secondary-f919 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over-05c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_black_1550 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .avatar_black_1550 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-6203 {
    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);
}

.link-top-1a71 {
    color: var(--text-white);
    font-weight: 600;
}

.nav_focused_5a59 {
    color: var(--accent-color);
    font-weight: 600;
}

.pagination-2b18 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.pagination-2b18 strong {
    color: var(--accent-color);
}

/* Security Section */
.aside_4f31 {
    padding: var(--section-padding);
}

/* Benefits Section */
.input_0cd5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.avatar_37ec {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.light_f8e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_ecfc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.overlay_red_51ed {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .overlay_red_51ed {
        flex-direction: column;
        gap: 1rem;
    }
}

.overlay_red_51ed:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.overlay_red_51ed .notice_23f8 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.overlay_red_51ed .menu_59ff {
    flex: 1;
}

.overlay_red_51ed .shade_f9b1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.overlay_red_51ed .form-1470 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.current_a3fe {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current_a3fe .notification_200b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current_a3fe .accent_3d1c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_a3fe .accent_3d1c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.current_a3fe .accent_3d1c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tooltip_fbae {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.shade-5f49 {
    padding: var(--section-padding);
}

.fixed_55d2 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .fixed_55d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_active_333d {
    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);
}

.tooltip_active_333d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tooltip_active_333d .sidebar_5231 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_active_333d .preview_04b0 {
    flex: 1;
}

.tooltip_active_333d .tabs_inner_7e62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_active_333d .light-5552 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.panel-red-2ada {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-red-2ada .tiny_876f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel-red-2ada .gallery_f876 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.panel-red-2ada .gallery_f876 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);
}

.panel-red-2ada .gallery_f876 li:last-child {
    border-bottom: none;
}

.panel-red-2ada .gallery_f876 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;
}

.panel-red-2ada .gallery_f876 li strong {
    color: var(--text-white);
}

.texture_2c18 {
    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);
}

.texture_2c18 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture_2c18 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.west-a6b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_f1c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .filter_f1c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.over_7f12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.over_7f12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.badge_soft_98f7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary_static_c6d5 {
    font-size: 2rem;
}

.input_b530 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.narrow-6b86 {
    flex: 1;
}

.bronze-5fce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze-5fce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bronze-5fce li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.popup_cc08 {
    margin-top: 3rem;
}

.copper_680a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar-95b8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone-3ccc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone-3ccc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.stone-3ccc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.stone-3ccc li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.paper-183b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-aee5 {
    margin: 2rem 0;
}

.overlay-05dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.overlay-05dd .stone-58d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-hovered-c9cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .block-hovered-c9cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left-c2eb {
    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-c2eb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.alert_top_454e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.middle_95bd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.component_dd81 {
    padding: var(--section-padding);
}

.title-9b17 {
    margin: 2rem 0;
}

.main_1778 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .main_1778 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main_1778 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_f4f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_f4f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.picture-tall-e683 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hover_b55e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.component-2f2f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.component-2f2f.icon_north_d6e2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tooltip_4395 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.tabs_fresh_3ffc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.south-1fb6 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.north-c598 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient-1a4d {
    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);
}

.gradient-1a4d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient-1a4d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.description_current_d609 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_f2a3 {
    margin: 2rem 0;
}

.in_09ae {
    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) {
    .in_09ae {
        flex-direction: column;
        gap: 1rem;
    }
}

.in_09ae:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.in_09ae::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);
}

.black_4645 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.video_under_ee8a {
    flex: 1;
}

.heading-042f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.light_8574 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light_8574 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.header_bright_14ad {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-0d67 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_eb51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert_eb51 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.purple_cfc0 {
    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);
}

.preview-complex-8ec3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav-1ead {
    flex: 1;
}

.detail-dark-53bb {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.logo-down-38ea {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.out_c4d5 {
    margin-top: 2rem;
    text-align: center;
}

.fixed-028c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed-028c strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.next-97f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next-97f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-4c33 {
    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);
}

.tag-4c33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tag-4c33 .north_9475 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-4c33 .description_purple_dba3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tag-4c33 .text-black-f0e6 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tag-4c33 .wrapper-b8e7 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.box_bronze_f4e8 {
    padding: var(--section-padding);
}

.wrapper-2c88 .grid-over-a4dd {
    flex: 1;
}

/* Promo Calendar Section */
.purple_b26c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-6ba5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first-6ba5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_4a26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_cold_e18a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.layout-d382 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.east_0d4b {
    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);
}

.tabs_hovered_1339 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy-149d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tag-dirty-3913 {
    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);
}

.tag-dirty-3913 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag-dirty-3913 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.new_d0fc {
    padding: var(--section-padding);
}

.green_91fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .green_91fe {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-d36f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_fluid_c429 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module_dynamic_07ca {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module_dynamic_07ca li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-4ee9 {
    margin-top: 3rem;
}

.detail-4ee9 .copper_680a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.detail-4ee9 .sidebar-95b8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-4ee9 .stone-3ccc {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.detail-4ee9 .stone-3ccc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.detail-4ee9 .stone-3ccc li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.detail-4ee9 .stone-3ccc li strong {
    color: var(--warning-color);
}

.dark-0583 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dark-0583 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.box-dynamic-5439 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-a0aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-a0aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_e831 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex_e831 .stone-58d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.header_paper_101b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-mini-04f5 {
    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);
}

.link-mini-04f5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.lower_8de5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-first-bbf1 {
    flex: 1;
}

.over_6bc4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.chip-brown-356b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tertiary-hovered-6fb2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.avatar-lower-626f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.light_7df3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .light_7df3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-hot-e754 {
    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);
}

.background-hot-e754:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.detail_dba3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_864e {
    color: var(--text-gray);
    font-size: 1rem;
}

.inner-75eb {
    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);
}

.banner_stone_a00b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.banner_stone_a00b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.list-smooth-4f30 { 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; }
.white-dd34, .white_5adc { max-width:100%; height:auto; }

.lite-10dc, .east_232c, .sidebar-small-e204 { white-space:normal; }

.easy_471d,
.chip_8b90,
.heading-lite-be13,
.next-97f1,
.pagination_c42f,
.carousel-under-5f6f {
  flex-wrap:wrap;
}

[class*="grid"],
.light_7df3,
.main_1778,
.icon_fb92 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.search_mini_8aab img,
.chip_8b90 img,
.yellow_14be img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.glass_b38e, .hover_fixed_4d0a,
.cool_f7e2, .north_bae1 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.info-thick-1e27 { width:100%; overflow-x:auto; }
.info-thick-1e27 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.element-45ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .element-45ce {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.paragraph-action-9655 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.huge_a8da,
.medium-6fea,
.slider_78e8,
.secondary_5b6f,
.status-f937,
.light_7df3,
.main_1778,
.icon_fb92,
.content_fixed_78aa,
.small-6561,
.element-45ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .huge_a8da,
  .medium-6fea,
  .slider_78e8,
  .secondary_5b6f,
  .status-f937,
  .light_7df3,
  .main_1778,
  .icon_fb92,
  .content_fixed_78aa,
  .small-6561,
  .element-45ce {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tertiary_wood_253c,
.filter_c4b7,
.background-hot-e754,
.liquid_95ae,
.button_f4f5,
.white_0b7f,
.fluid-5ab9,
.paragraph-action-9655 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.box_plasma_4c18,
.purple-b36e,
.pink-7b6e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.box_plasma_4c18 > *,
.purple-b36e > *,
.pink-7b6e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1c91 */
.promo-block-m0 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
